summaryrefslogtreecommitdiff
path: root/cui/source/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-10 13:06:41 +0200
committerNoel Grandin <noel@peralex.com>2015-11-10 15:30:02 +0200
commitc83bf01e6ec3386e2dd1a97112ff4696881dc323 (patch)
treed90f78cde47d53628b4dd3134b4b1f1e5d8719b5 /cui/source/inc
parentd5f19eb658d8b20619f5591f6de824741e348910 (diff)
cui: boost::ptr_vector->std::vector<unique_ptr>
Change-Id: If2e8e7eddd5e75a211940416b4370c8f7768849e
Diffstat (limited to 'cui/source/inc')
-rw-r--r--cui/source/inc/cfgutil.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/inc/cfgutil.hxx b/cui/source/inc/cfgutil.hxx
index 314f16522751..fddbdc17c0c5 100644
--- a/cui/source/inc/cfgutil.hxx
+++ b/cui/source/inc/cfgutil.hxx
@@ -20,7 +20,7 @@
#define INCLUDED_CUI_SOURCE_INC_CFGUTIL_HXX
#include <vector>
-#include <boost/ptr_container/ptr_vector.hpp>
+#include <memory>
#include <rtl/ustring.hxx>
#include <com/sun/star/frame/XModel.hpp>
@@ -96,7 +96,7 @@ struct SfxGroupInfo_Impl
nKind( n ), nUniqueID( nr ), pObject( pObj ), bWasOpened(false) {}
};
-typedef boost::ptr_vector<SfxGroupInfo_Impl> SfxGroupInfoArr_Impl;
+typedef std::vector<std::unique_ptr<SfxGroupInfo_Impl> > SfxGroupInfoArr_Impl;
class SfxConfigFunctionListBox : public SvTreeListBox
{