[Libreoffice-commits] core.git: starmath/inc starmath/source

Julien Nabet (via logerrit) logerrit at kemper.freedesktop.org
Fri Apr 24 08:01:40 UTC 2020


 starmath/inc/types.hxx          |    1 +
 starmath/source/ooxmlimport.cxx |    3 +++
 2 files changed, 4 insertions(+)

New commits:
commit be23b4a91504b81a19510f8562e92203b4317edf
Author:     Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Wed Apr 22 15:44:07 2020 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Fri Apr 24 10:01:03 2020 +0200

    tdf#132305: Teach Starmath MS_COMBOVERLINE = 0x0305
    
    Change-Id: I04b282d3f0dae68d459002f5a3822ac06fdb7986
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92698
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Jenkins

diff --git a/starmath/inc/types.hxx b/starmath/inc/types.hxx
index b5cca6087346..5680e907c6e7 100644
--- a/starmath/inc/types.hxx
+++ b/starmath/inc/types.hxx
@@ -135,6 +135,7 @@ sal_Unicode const MS_TILDE = 0x007E;
 sal_Unicode const MS_COMBTILDE = 0x0303;
 sal_Unicode const MS_BAR = 0x00AF;
 sal_Unicode const MS_COMBBAR = 0x0304;
+sal_Unicode const MS_COMBOVERLINE = 0x0305;
 sal_Unicode const MS_BREVE = 0x02D8;
 sal_Unicode const MS_COMBBREVE = 0x0306;
 sal_Unicode const MS_CIRCLE = 0x02DA;
diff --git a/starmath/source/ooxmlimport.cxx b/starmath/source/ooxmlimport.cxx
index 731daa054120..034919787f4b 100644
--- a/starmath/source/ooxmlimport.cxx
+++ b/starmath/source/ooxmlimport.cxx
@@ -180,6 +180,9 @@ OUString SmOoxmlImport::handleAcc()
         case MS_COMBACUTE:
             acc = "acute";
             break;
+        case MS_COMBOVERLINE:
+            acc = "overline";
+            break;
         case MS_GRAVE:
         case MS_COMBGRAVE:
             acc = "grave";


More information about the Libreoffice-commits mailing list