summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-01-27 12:33:02 +0900
committerAndras Timar <andras.timar@collabora.com>2015-01-27 10:40:00 +0100
commit3d5c6146bb8778c0c3512d9eda45434fa3b2067e (patch)
tree1a5d11370d39c22632f8f2e771c8d07e6ec58778 /starmath
parentf609239187e73059b63f9f5121b8ff5448311f62 (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> (cherry picked from commit 9efb04dfbf70e123da1755adcede8199eabf0d9a) Reviewed-on: https://gerrit.libreoffice.org/14198
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 819bc5e318f3..b31d51779cb4 100644
--- a/starmath/source/node.cxx
+++ b/starmath/source/node.cxx
@@ -2086,7 +2086,7 @@ void SmFontNode::CreateTextFromNode(OUString &rText)
rText += "-";
break;
case FNTSIZ_MULTIPLY:
- rText += "*'";
+ rText += "*";
break;
case FNTSIZ_DIVIDE:
rText += "/";