summaryrefslogtreecommitdiffstats
path: root/include/oox/ppt
diff options
context:
space:
mode:
authorMatus Uzak <matus.uzak@gmail.com>2016-04-09 00:43:56 +0200
committerKatarina Behrens <Katarina.Behrens@cib.de>2016-04-29 11:59:11 +0000
commit554158f7d33742284905ed4953dd09041ea04a5d (patch)
tree08d2cbe7ffe4a6e4336df20f39fd3e0048a6d121 /include/oox/ppt
parentuse initialization list (diff)
downloadcore-554158f7d33742284905ed4953dd09041ea04a5d.tar.gz
core-554158f7d33742284905ed4953dd09041ea04a5d.zip
tdf#99030: PPTX import: Fixed lost slide background color
Regression from commit f3d1ac7 Change-Id: I5cb9fe1bb6c753c34b49e72194a9fbe4c10c1654 Reviewed-on: https://gerrit.libreoffice.org/23930 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'include/oox/ppt')
-rw-r--r--include/oox/ppt/slidepersist.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/oox/ppt/slidepersist.hxx b/include/oox/ppt/slidepersist.hxx
index 6fd77941d947..1e75c2c281ba 100644
--- a/include/oox/ppt/slidepersist.hxx
+++ b/include/oox/ppt/slidepersist.hxx
@@ -84,6 +84,7 @@ public:
void setBackgroundProperties( const oox::drawingml::FillPropertiesPtr& rFillPropertiesPtr ){ mpBackgroundPropertiesPtr = rFillPropertiesPtr; }
const oox::drawingml::FillPropertiesPtr& getBackgroundProperties() const { return mpBackgroundPropertiesPtr; }
+ oox::drawingml::Color& getBackgroundColor() { return maBackgroundColor; }
bool isMasterPage() const { return mbMaster; }
bool isNotesPage() const { return mbNotes; }
@@ -127,6 +128,7 @@ private:
SlidePersistPtr mpMasterPagePtr;
oox::drawingml::ShapePtr maShapesPtr;
+ oox::drawingml::Color maBackgroundColor;
oox::drawingml::FillPropertiesPtr mpBackgroundPropertiesPtr;
::std::list< std::shared_ptr< TimeNode > > maTimeNodeList;