summaryrefslogtreecommitdiff
path: root/include/filter
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-10-15 16:16:46 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-10-15 16:16:46 +0200
commitb1023801e4fecd532a1252a206563e6f6e71615c (patch)
treefc140f5935b50f63a6e195db3ddbd4a66d481d08 /include/filter
parentad9498f8b888f7851a8612b8d654a2bc89005925 (diff)
Blind Win fix attempt
Change-Id: I39df464321685ebef29f44221bab9005295d0c3f
Diffstat (limited to 'include/filter')
-rw-r--r--include/filter/msfilter/svdfppt.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx
index bc19a422b37e..0626c5d03924 100644
--- a/include/filter/msfilter/svdfppt.hxx
+++ b/include/filter/msfilter/svdfppt.hxx
@@ -349,12 +349,15 @@ public:
#define PPTSLIDEPERSIST_ENTRY_NOTFOUND 0xFFFF
-class MSFILTER_DLLPUBLIC PptSlidePersistList
+class MSFILTER_DLLPUBLIC PptSlidePersistList: private boost::noncopyable
{
private:
boost::ptr_vector<PptSlidePersistEntry> mvEntries;
public:
+ PptSlidePersistList();
+ ~PptSlidePersistList();
+
size_t size() const { return mvEntries.size(); }
bool is_null( size_t nIdx ) const { return mvEntries.is_null( nIdx ); }
const PptSlidePersistEntry& operator[]( size_t nIdx ) const { return mvEntries[ nIdx ]; }