summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorlbenes <lukebenes@hotmail.com>2017-09-22 00:45:25 -0400
committerAndras Timar <andras.timar@collabora.com>2017-09-26 12:30:41 +0200
commit4e9ffa01d99ec5a67468658641500cc317292092 (patch)
treebaf72a5882db52773e443147352040fcf49417da /sd
parent38c924c55e5b4fe35c53e3b0ec6c07f4dad80320 (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> (cherry picked from commit 9bcf000b49252a2293d05135a1a3d62bca5a5dc8) Signed-off-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'sd')
-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 f0e1b27f46b0..394ed1b4eb15 100644
--- a/sd/source/filter/eppt/pptx-epptooxml.cxx
+++ b/sd/source/filter/eppt/pptx-epptooxml.cxx
@@ -956,6 +956,12 @@ void PowerPointExport::WriteAnimationAttributeName( const FSHelperPtr& pFS, cons
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_INFO("sd.eppt", "unhandled animation attribute name: " << rAttributeName);