summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlbenes <lukebenes@hotmail.com>2017-09-22 00:45:25 -0400
committerSzymon Kłos <szymon.klos@collabora.com>2017-09-22 10:52:16 +0200
commit9bcf000b49252a2293d05135a1a3d62bca5a5dc8 (patch)
treeda9300a81b06c53052103df0afabe798f3aae203
parente4a42606467bc2a02bd7b4dbe69720963c33bd63 (diff)
tdf#112334 PPTX export style.color
Change-Id: I6a5779cee379b82d81cc73a0d0c154e6caa51424 Reviewed-on: https://gerrit.libreoffice.org/42613 Reviewed-by: Szymon Kłos <szymon.klos@collabora.com> Tested-by: Szymon Kłos <szymon.klos@collabora.com>
-rw-r--r--sd/source/filter/eppt/pptx-epptooxml.cxx6
1 files changed, 6 insertions, 0 deletions
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);