diff options
author | David Tardon <dtardon@redhat.com> | 2014-10-15 11:38:34 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-10-15 11:41:51 +0200 |
commit | 7d05bbd50d5b3a9fff467b44e033bedb12a46a2d (patch) | |
tree | e343bc8dcd90774ccbdbf966d67576c5c953bb04 /include | |
parent | 481d25c71a58893af75c5a9ccea0190566b6ef64 (diff) |
avoid double-delete
This is a regression from commit b1d48f0d9a3442c11adae6e36325a463d89ce44e.
Change-Id: Iffd39782c1d1fd7be14f4d657919f704807a40f5
Diffstat (limited to 'include')
-rw-r--r-- | include/filter/msfilter/svdfppt.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx index 9fed6d0a0876..bc19a422b37e 100644 --- a/include/filter/msfilter/svdfppt.hxx +++ b/include/filter/msfilter/svdfppt.hxx @@ -36,6 +36,7 @@ #include <filter/msfilter/msfilterdllapi.h> #include <vcl/font.hxx> #include <vector> +#include <boost/noncopyable.hpp> #include <boost/optional.hpp> #include <boost/ptr_container/ptr_vector.hpp> @@ -315,7 +316,7 @@ public: struct ProcessData; struct PPTStyleSheet; struct HeaderFooterEntry; -struct PptSlidePersistEntry +struct PptSlidePersistEntry : private boost::noncopyable { PptSlidePersistAtom aPersistAtom; PptSlideAtom aSlideAtom; |