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:15:12 +0000
commit98b73b331918e3e9213992980048e3c3c8441b93 (patch)
tree56c3d03eeae96ca8b3bf337c525a52c0f27a51ce /starmath
parent8820d21f81a9b6f89e40216f2191c019651cfe4d (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> Reviewed-on: https://gerrit.libreoffice.org/14197
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 bb2006a6428a..97fd34ab00e9 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 += "/";