diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-07-23 22:32:14 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-07-24 10:58:54 +0200 |
commit | 88b992d0da1e6122942cd9817ac55da1b932fdd6 (patch) | |
tree | 9cb5dc60ad46605b83ad172a944c50e19df7b92f /include | |
parent | 5e6a0eed2743b99dbbe133168204fdb184608476 (diff) |
filter: convert boost::ptr_vector to std::vector<std::unique_ptr>
Change-Id: I548f15466c695e4cbf5e505771d7c0baf8812198
Diffstat (limited to 'include')
-rw-r--r-- | include/filter/msfilter/svdfppt.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx index b864c67d96ee..cabb4b9f4bca 100644 --- a/include/filter/msfilter/svdfppt.hxx +++ b/include/filter/msfilter/svdfppt.hxx @@ -1161,7 +1161,7 @@ public: bool mbTab; // if true, this paragraph has tabulators in text sal_uInt32 mnCurrentObject; - ::boost::ptr_vector<PPTPortionObj> m_PortionList; + ::std::vector<std::unique_ptr<PPTPortionObj>> m_PortionList; void UpdateBulletRelSize( sal_uInt32& nBulletRelSize ) const; bool GetAttrib( sal_uInt32 nAttr, sal_uInt32& nVal, sal_uInt32 nInstanceInSheet ); |