diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-01-27 12:33:02 +0900 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-27 13:08:19 +0000 |
commit | 5b0548c2ca217c20456625cfda1f684f3d2735db (patch) | |
tree | 32ebc9ec6a19d050ca7fc5bfa1ba2aa817b53d51 | |
parent | 8c191fa956ec650296a351695ff10f8f8e536ca9 (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/14199
Reviewed-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r-- | starmath/source/node.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx index 41a74b5105f9..9da0d2102283 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 += "/"; |