summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-01-27 12:33:02 +0900
committerCaolán McNamara <caolanm@redhat.com>2015-01-27 09:12:02 +0000
commit9efb04dfbf70e123da1755adcede8199eabf0d9a (patch)
tree8258c1aa401cf13642e47b724218abed744529b0 /starmath
parent0866023fafe4665f488eaea65a32cd1364e21594 (diff)
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@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/node.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx
index 8cc7f0bd0ab9..083e3dc133cc 100644
--- a/starmath/source/node.cxx
+++ b/starmath/source/node.cxx
@@ -2046,7 +2046,7 @@ void SmFontNode::CreateTextFromNode(OUString &rText)
rText += "-";
break;
case FNTSIZ_MULTIPLY:
- rText += "*'";
+ rText += "*";
break;
case FNTSIZ_DIVIDE:
rText += "/";