summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-03-26 12:41:16 +0100
committerFridrich Strba <fridrich@documentfoundation.org>2013-03-26 17:27:58 +0000
commit40c5c4590ac1e6e58bd2f4b16603706b37c0d0b3 (patch)
tree0d2fc2520b7b5dd6ba8b7995359114ec87959f84 /starmath
parent0dd9158a1fe48dee192a954a8ea24c2efcd64a86 (diff)
fix iint/iiint import from docx math
Use the correct LO names for the symbols. Change-Id: I4da760fb84e6f9ca811e13061341f9a993342c29 Reviewed-on: https://gerrit.libreoffice.org/3059 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/ooxmlimport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/ooxmlimport.cxx b/starmath/source/ooxmlimport.cxx
index 0b1bedad3315..e3a48ca93a65 100644
--- a/starmath/source/ooxmlimport.cxx
+++ b/starmath/source/ooxmlimport.cxx
@@ -530,10 +530,10 @@ OUString SmOoxmlImport::handleNary()
ret = "int";
break;
case MS_IINT:
- ret = "liint";
+ ret = "iint";
break;
case MS_IIINT:
- ret = "liiint";
+ ret = "iiint";
break;
case MS_LINT:
ret = "lint";