[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - starmath/source
Takeshi Abe
tabe at fixedpoint.jp
Tue Jan 27 01:18:57 PST 2015
starmath/source/node.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 32e7fc9e82e0e62e872611482d97f745bac3899a
Author: Takeshi Abe <tabe at fixedpoint.jp>
Date: Tue Jan 27 12:33:02 2015 +0900
Fix a single quote slipped in
See void SmNodeToTextVisitor::Visit( SmFontNode* pNode ) for comparison.
Change-Id: Id7e58fef3b715ef2a4bcb4e1a1d390aadf917b5f
Reviewed-on: https://gerrit.libreoffice.org/14193
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
(cherry picked from commit 9efb04dfbf70e123da1755adcede8199eabf0d9a)
Reviewed-on: https://gerrit.libreoffice.org/14198
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx
index 41a74b5..9da0d21 100644
--- a/starmath/source/node.cxx
+++ b/starmath/source/node.cxx
@@ -2052,7 +2052,7 @@ void SmFontNode::CreateTextFromNode(OUString &rText)
rText += "-";
break;
case FNTSIZ_MULTIPLY:
- rText += "*'";
+ rText += "*";
break;
case FNTSIZ_DIVIDE:
rText += "/";
More information about the Libreoffice-commits
mailing list