summaryrefslogtreecommitdiffstats
path: root/basic/source/inc/propacc.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-10-25 16:54:21 +0100
committerMichael Stahl <mstahl@redhat.com>2015-10-26 16:09:20 +0100
commit71f6aab077f30f8b0eb6c7458cb0646dea892148 (patch)
tree448b15eabaf170862914c09f8fe7135b29c0ac05 /basic/source/inc/propacc.hxx
parentbasic: replace boost::ptr_vector with std::vector<std::unique_ptr> (diff)
downloadcore-71f6aab077f30f8b0eb6c7458cb0646dea892148.tar.gz
core-71f6aab077f30f8b0eb6c7458cb0646dea892148.zip
basic: replace boot::ptr_vector with std::vector
Change-Id: I4967ad8345cd74c39edbea1df513978b62996b90
Diffstat (limited to 'basic/source/inc/propacc.hxx')
-rw-r--r--basic/source/inc/propacc.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/basic/source/inc/propacc.hxx b/basic/source/inc/propacc.hxx
index 325976ec3fea..ec227a44647b 100644
--- a/basic/source/inc/propacc.hxx
+++ b/basic/source/inc/propacc.hxx
@@ -25,9 +25,10 @@
#include <com/sun/star/beans/XPropertyAccess.hpp>
#include <com/sun/star/beans/XPropertyContainer.hpp>
#include <cppuhelper/implbase.hxx>
-#include <boost/ptr_container/ptr_vector.hpp>
-typedef ::boost::ptr_vector< css::beans::PropertyValue > SbPropertyValueArr_Impl;
+#include <vector>
+
+typedef ::std::vector<css::beans::PropertyValue> SbPropertyValueArr_Impl;
typedef ::cppu::WeakImplHelper< css::beans::XPropertySet,
css::beans::XPropertyAccess > SbPropertyValuesHelper;