diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-09-24 12:46:49 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-10-10 13:50:02 +0200 |
commit | 86de557ea2e9ab393909f66b9b2906573a2f9ef1 (patch) | |
tree | 7091907389fdb0e28bce2ebee0f02b9f11dfb138 /sd | |
parent | a636217f1fed882ef820540833d9283796b00380 (diff) |
Unused PowerPointExport::mpMasterFSArray member
Change-Id: I02b9c31146396a39a624fbb869a5880b176e0f9e
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/epptooxml.hxx | 1 | ||||
-rw-r--r-- | sd/source/filter/eppt/pptx-epptooxml.cxx | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/sd/source/filter/eppt/epptooxml.hxx b/sd/source/filter/eppt/epptooxml.hxx index 0197b97cfbfa..aa59d0ce0640 100644 --- a/sd/source/filter/eppt/epptooxml.hxx +++ b/sd/source/filter/eppt/epptooxml.hxx @@ -141,7 +141,6 @@ private: LayoutInfo mLayoutInfo[EPP_LAYOUT_SIZE]; std::vector< ::sax_fastparser::FSHelperPtr > mpSlidesFSArray; - std::vector< ::sax_fastparser::FSHelperPtr > mpMasterFSArray; sal_Int32 mnLayoutFileIdMax; sal_uInt32 mnSlideIdMax; diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx index d00f4d8f96b0..caf46c66ba4b 100644 --- a/sd/source/filter/eppt/pptx-epptooxml.cxx +++ b/sd/source/filter/eppt/pptx-epptooxml.cxx @@ -1555,9 +1555,6 @@ void PowerPointExport::ImplWriteSlideMaster( sal_uInt32 nPageNum, Reference< XPr .appendAscii( ".xml" ) .makeStringAndClear(), "application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml" ); - if( mpMasterFSArray.size() < mnMasterPages ) - mpMasterFSArray.resize( mnMasterPages ); - mpMasterFSArray[ nPageNum ] = pFS; // write theme per master WriteTheme( nPageNum ); |