diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-11 14:05:05 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-12 08:01:35 +0200 |
commit | 10629489d39044c79967c0e7a38e1fdd5025f069 (patch) | |
tree | 9405e396ba8ace6dd81254034122147e59c50cd6 /sfx2/source/inc | |
parent | 31a4248332cc95a23337ac9c6d7218fe109bce57 (diff) |
sfx2: boost::ptr_vector->std::vector<std::unique_ptr>
Change-Id: Ida6aa572b182f966180debc9bf8665975fe51ea2
Diffstat (limited to 'sfx2/source/inc')
-rw-r--r-- | sfx2/source/inc/splitwin.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sfx2/source/inc/splitwin.hxx b/sfx2/source/inc/splitwin.hxx index 86d9d7f92ed3..2f3b8d65c984 100644 --- a/sfx2/source/inc/splitwin.hxx +++ b/sfx2/source/inc/splitwin.hxx @@ -22,7 +22,8 @@ #include <vcl/splitwin.hxx> #include <sfx2/childwin.hxx> -#include <boost/ptr_container/ptr_vector.hpp> +#include <vector> +#include <memory> class SfxWorkWindow; class SfxDockingWindow; @@ -37,7 +38,7 @@ struct SfxDock_Impl long nSize; }; -typedef boost::ptr_vector<SfxDock_Impl> SfxDockArr_Impl; +typedef std::vector<std::unique_ptr<SfxDock_Impl> > SfxDockArr_Impl; class SfxSplitWindow : public SplitWindow { |