diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-10 13:15:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-10 15:30:02 +0200 |
commit | 13815efe3d92226155531e523cbd0cf1faaa8d54 (patch) | |
tree | f17d65d38cde16bd426d838ba8004f9a6717f5fa /cui/source/inc | |
parent | c83bf01e6ec3386e2dd1a97112ff4696881dc323 (diff) |
cui: boost::ptr_vector->std::vector<unique_ptr>
Change-Id: Ieddd13abc6bb23904db10f303dfc85cd87cfaa03
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/numpages.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/inc/numpages.hxx b/cui/source/inc/numpages.hxx index 8d83f106dfb4..8e7194cf5299 100644 --- a/cui/source/inc/numpages.hxx +++ b/cui/source/inc/numpages.hxx @@ -20,7 +20,7 @@ #define INCLUDED_CUI_SOURCE_INC_NUMPAGES_HXX #include <vector> -#include <boost/ptr_container/ptr_vector.hpp> +#include <memory> #include <sfx2/tabdlg.hxx> #include <vcl/group.hxx> @@ -76,7 +76,7 @@ struct SvxNumSettings_Impl {} }; -typedef boost::ptr_vector<SvxNumSettings_Impl> SvxNumSettingsArr_Impl; +typedef std::vector<std::unique_ptr<SvxNumSettings_Impl> > SvxNumSettingsArr_Impl; |