summaryrefslogtreecommitdiff
path: root/include/basic/sbx.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-07-17 17:44:51 +0200
committerMichael Stahl <mstahl@redhat.com>2015-07-17 20:26:59 +0200
commit15f32b5a1ea289159703dd7b118a911c8d0da61d (patch)
treed75860a270c00a61713fe842aa5a995488749461 /include/basic/sbx.hxx
parentce6466f5736258b41f7aa892bdc1fc1451f6593d (diff)
basic: replace boost::ptr_vector with std::vector<std::unique_ptr>>
Change-Id: I96ea97c1df7903a28387d8e1171075be55a80ca7
Diffstat (limited to 'include/basic/sbx.hxx')
-rw-r--r--include/basic/sbx.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/basic/sbx.hxx b/include/basic/sbx.hxx
index e6fb750d0348..66c2d09cc883 100644
--- a/include/basic/sbx.hxx
+++ b/include/basic/sbx.hxx
@@ -31,8 +31,8 @@
#include <basic/sbxmeth.hxx>
#include <basic/basicdllapi.h>
-#include <boost/ptr_container/ptr_vector.hpp>
#include <vector>
+#include <memory>
class SvStream;
class SbxBase;
@@ -59,7 +59,7 @@ struct SbxParamInfo
~SbxParamInfo() {}
};
-typedef boost::ptr_vector<SbxParamInfo> SbxParams;
+typedef std::vector<std::unique_ptr<SbxParamInfo>> SbxParams;
class BASIC_DLLPUBLIC SbxInfo : public SvRefBase
{
@@ -69,7 +69,7 @@ class BASIC_DLLPUBLIC SbxInfo : public SvRefBase
OUString aComment;
OUString aHelpFile;
sal_uInt32 nHelpId;
- SbxParams aParams;
+ SbxParams m_Params;
protected:
bool LoadData( SvStream&, sal_uInt16 );