[Libreoffice-commits] core.git: sd/source

lbenes lukebenes at hotmail.com
Fri Sep 22 08:52:51 UTC 2017


 sd/source/filter/eppt/pptx-epptooxml.cxx |    6 ++++++
 1 file changed, 6 insertions(+)

New commits:
commit 9bcf000b49252a2293d05135a1a3d62bca5a5dc8
Author: lbenes <lukebenes at hotmail.com>
Date:   Fri Sep 22 00:45:25 2017 -0400

    tdf#112334 PPTX export style.color
    
    Change-Id: I6a5779cee379b82d81cc73a0d0c154e6caa51424
    Reviewed-on: https://gerrit.libreoffice.org/42613
    Reviewed-by: Szymon Kłos <szymon.klos at collabora.com>
    Tested-by: Szymon Kłos <szymon.klos at collabora.com>

diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx
index 633968dcacd4..6f3020358202 100644
--- a/sd/source/filter/eppt/pptx-epptooxml.cxx
+++ b/sd/source/filter/eppt/pptx-epptooxml.cxx
@@ -972,6 +972,12 @@ void PowerPointExport::WriteAnimationAttributeName(const FSHelperPtr& pFS, const
         pFS->writeEscaped("fillcolor");
         pFS->endElementNS(XML_p, XML_attrName);
     }
+    else if (rAttributeName == "CharColor")
+    {
+        pFS->startElementNS(XML_p, XML_attrName, FSEND);
+        pFS->writeEscaped("style.color");
+        pFS->endElementNS(XML_p, XML_attrName);
+    }
     else
     {
         SAL_WARN("sd.eppt", "unhandled animation attribute name: " << rAttributeName);


More information about the Libreoffice-commits mailing list