summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2021-11-22 13:31:58 +0100
committerMiklos Vajna <vmiklos@collabora.com>2021-11-22 15:20:09 +0100
commit2eaf79131dab04acce1411fed1d8ac8ab5c51575 (patch)
tree4eb99b5c4fac381ece1457969aabaf41a08cdcb1 /include
parent5c6c3c0b75a3584258b786c7e9bf8789d31847e8 (diff)
PPTX: implement native handling of <a:clrScheme> children
This was already handled by converting them to raw colors at import time. This commit imports the color scheme contents (the 12 colors) into the doc model. This is a dependency to export them back to PPTX and to be able to update these colors on the UI by picking a different theme. Change-Id: I177de4f15d5f0e628669998d1cda7db24220b2eb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125651 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'include')
-rw-r--r--include/oox/drawingml/clrscheme.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/oox/drawingml/clrscheme.hxx b/include/oox/drawingml/clrscheme.hxx
index fbb107601940..01711fe8bfbd 100644
--- a/include/oox/drawingml/clrscheme.hxx
+++ b/include/oox/drawingml/clrscheme.hxx
@@ -92,6 +92,8 @@ public:
void SetName(const OUString& rName) { maName = rName; }
const OUString& GetName() const { return maName; }
+
+ void ToAny(css::uno::Any& rVal) const;
};
}