diff options
author | Noel Grandin <noel@peralex.com> | 2012-05-23 13:49:36 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-05-25 00:17:06 +0200 |
commit | 0437791557aa43285a67136f8eae5b9dfd1e363e (patch) | |
tree | 5ca6a7c945b6e6970d80021858d558eb8741f6a9 /sw/inc/dbmgr.hxx | |
parent | da9bf1ee2f712748dd94080fe8fc7fd90348d08f (diff) |
Convert SV_DECL_PTRARR_DEL(SwDSParamArr) to boost::ptr_vector
Change-Id: I685a79cb14b0bb1d44d2013b3dd74150929cdf4b
Diffstat (limited to 'sw/inc/dbmgr.hxx')
-rw-r--r-- | sw/inc/dbmgr.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/dbmgr.hxx b/sw/inc/dbmgr.hxx index 313c34ebc055..34fc0ae557a8 100644 --- a/sw/inc/dbmgr.hxx +++ b/sw/inc/dbmgr.hxx @@ -39,6 +39,7 @@ #include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/lang/Locale.hpp> #include <com/sun/star/beans/PropertyValue.hpp> +#include <boost/ptr_container/ptr_vector.hpp> namespace com{namespace sun{namespace star{ namespace sdbc{ class XConnection; @@ -144,8 +145,7 @@ struct SwDSParam : public SwDBData bAfterSelection = sal_True; } }; -typedef SwDSParam* SwDSParamPtr; -SV_DECL_PTRARR_DEL(SwDSParamArr, SwDSParamPtr, 0) +typedef boost::ptr_vector<SwDSParam> SwDSParamArr; struct SwMergeDescriptor { |