From cc35a79a5c42efdf965067364f3a18e81ac9c850 Mon Sep 17 00:00:00 2001 From: "scc%netscape.com" Date: Mon, 15 May 2000 12:50:31 +0000 Subject: [PATCH] string fixes git-svn-id: svn://10.0.0.236/trunk@69781 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/layout/mathml/base/src/nsMathMLmfencedFrame.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/layout/mathml/base/src/nsMathMLmfencedFrame.cpp b/mozilla/layout/mathml/base/src/nsMathMLmfencedFrame.cpp index f1560943910..84fef4bfccb 100644 --- a/mozilla/layout/mathml/base/src/nsMathMLmfencedFrame.cpp +++ b/mozilla/layout/mathml/base/src/nsMathMLmfencedFrame.cpp @@ -158,7 +158,7 @@ nsMathMLmfencedFrame::ReCreateFencesAndSeparators(nsIPresContext* aPresContext) data = value; } else if (NS_CONTENT_ATTR_NOT_THERE == rv) - data = ')'; // default as per the MathML REC + data = PRUnichar(')'); // default as per the MathML REC else data = nsAutoString(); @@ -178,7 +178,7 @@ nsMathMLmfencedFrame::ReCreateFencesAndSeparators(nsIPresContext* aPresContext) data = value; } else if (NS_CONTENT_ATTR_NOT_THERE == rv) - data = ','; // default as per the MathML REC + data = PRUnichar(','); // default as per the MathML REC else data = nsAutoString();