summaryrefslogtreecommitdiff
path: root/cui/source/inc/numpages.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2012-06-10 18:19:06 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-12 23:25:11 +0200
commit4449da41bcdcd7f8b572a8d7f535cc72b1db28a5 (patch)
tree9bbddb4690e95f5916b6fb209d52625ee91db770 /cui/source/inc/numpages.hxx
parentbbe2cb404a11bc68e1b94d7e0e2aaa935fe21c80 (diff)
Convert SV_DECL_PTRARR_DEL(SvxNumSettingsArr_Impl) to boost::ptr_vector
Change-Id: I1d53e6815c4da5ef5f525dbc11bca73723bb3bd2
Diffstat (limited to 'cui/source/inc/numpages.hxx')
-rw-r--r--cui/source/inc/numpages.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/cui/source/inc/numpages.hxx b/cui/source/inc/numpages.hxx
index 00f0ddd82ab2..9dfcba28269b 100644
--- a/cui/source/inc/numpages.hxx
+++ b/cui/source/inc/numpages.hxx
@@ -31,6 +31,7 @@
// include ---------------------------------------------------------------
#include <vector>
+#include <boost/ptr_container/ptr_vector.hpp>
#include <sfx2/tabdlg.hxx>
#include <vcl/group.hxx>
@@ -41,7 +42,6 @@
#include <vcl/field.hxx>
#include <editeng/numdef.hxx>
#include <svtools/ctrlbox.hxx>
-#include <svl/svarray.hxx>
// -----------------------------------------------------------------------
class SvxNumRule;
@@ -68,8 +68,7 @@ struct SvxNumSettings_Impl
{}
};
-typedef SvxNumSettings_Impl* SvxNumSettings_ImplPtr;
-SV_DECL_PTRARR_DEL(SvxNumSettingsArr_Impl,SvxNumSettings_ImplPtr,8)
+typedef boost::ptr_vector<SvxNumSettings_Impl> SvxNumSettingsArr_Impl;
//------------------------------------------------