diff options
Diffstat (limited to 'oox/inc')
-rw-r--r-- | oox/inc/oox/core/filterbase.hxx | 4 | ||||
-rw-r--r-- | oox/inc/oox/ppt/presentationfragmenthandler.hxx | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/oox/inc/oox/core/filterbase.hxx b/oox/inc/oox/core/filterbase.hxx index 171ae5f7d76b..5f47ea9fcef2 100644 --- a/oox/inc/oox/core/filterbase.hxx +++ b/oox/inc/oox/core/filterbase.hxx @@ -32,6 +32,7 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <cppuhelper/basemutex.hxx> #include <cppuhelper/implbase5.hxx> +#include <comphelper/sequenceashashmap.hxx> #include "oox/helper/binarystreambase.hxx" #include "oox/helper/storagebase.hxx" #include "oox/dllapi.h" @@ -140,6 +141,9 @@ public: const ::com::sun::star::uno::Reference< ::com::sun::star::task::XStatusIndicator >& getStatusIndicator() const; + /** Returns the FilterData */ + ::comphelper::SequenceAsHashMap& getFilterData() const; + /** Returns the media descriptor. */ ::comphelper::MediaDescriptor& getMediaDescriptor() const; diff --git a/oox/inc/oox/ppt/presentationfragmenthandler.hxx b/oox/inc/oox/ppt/presentationfragmenthandler.hxx index 694336894ea5..bb9488437266 100644 --- a/oox/inc/oox/ppt/presentationfragmenthandler.hxx +++ b/oox/inc/oox/ppt/presentationfragmenthandler.hxx @@ -48,6 +48,9 @@ protected: const oox::ppt::SlidePersistPtr pPersist ); private: + + void importSlide(sal_uInt32 nSlide, sal_Bool bFirstSlide, sal_Bool bImportNotes); + std::vector< rtl::OUString > maSlideMasterVector; std::vector< rtl::OUString > maSlidesVector; std::vector< rtl::OUString > maNotesMasterVector; |