diff options
author | Matus Uzak <matus.uzak@gmail.com> | 2016-04-09 00:43:56 +0200 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2016-04-29 11:59:11 +0000 |
commit | 554158f7d33742284905ed4953dd09041ea04a5d (patch) | |
tree | 08d2cbe7ffe4a6e4336df20f39fd3e0048a6d121 /include/oox/ppt | |
parent | aafe8426051eff4394d9421a0f4c83bf9b7c5fdf (diff) |
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.hxx | 2 |
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; |