diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-03-26 12:41:16 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-03-26 12:42:25 +0100 |
commit | 269b72069746578dd0d89de6b44adb715c39173b (patch) | |
tree | e7ff5d3774757a76690f417db1b9a79f48913ce1 /starmath | |
parent | 6e33a2bdadefb8b4d3f3d49ad0d843bde60a4623 (diff) |
fix iint/iiint import from docx math
Use the correct LO names for the symbols.
Change-Id: I4da760fb84e6f9ca811e13061341f9a993342c29
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/ooxmlimport.cxx | 4 |
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"; |