diff options
author | Noel Grandin <noel@peralex.com> | 2012-06-07 14:11:58 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-06-12 23:25:09 +0200 |
commit | 78a219e973d2528351f7b850e9b5f58bf37ff0cf (patch) | |
tree | 41775a1a6d9c3163fc4d1f5edefac4da47bac5e0 /sc/inc | |
parent | a06d710466ca4fd433a93a297a7a27af8a2746b3 (diff) |
Convert SV_DECL_PTRARR_DEL(XModifyListenerArr_Impl) to ptr_vector
Change-Id: Ic4cb48c1ea3df05cecaedb41941d9b592d591a55
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/cellsuno.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/inc/cellsuno.hxx b/sc/inc/cellsuno.hxx index 9bf0b3b7460a..dce437d323de 100644 --- a/sc/inc/cellsuno.hxx +++ b/sc/inc/cellsuno.hxx @@ -98,6 +98,7 @@ #include <com/sun/star/document/XEventsSupplier.hpp> #include <cppuhelper/implbase2.hxx> #include <cppuhelper/implbase3.hxx> +#include <boost/ptr_container/ptr_vector.hpp> #ifndef __SGI_STL_VECTOR #include <vector> @@ -128,8 +129,8 @@ public: }; typedef ::com::sun::star::uno::Reference< - ::com::sun::star::util::XModifyListener >* XModifyListenerPtr; -SV_DECL_PTRARR_DEL( XModifyListenerArr_Impl, XModifyListenerPtr, 4 ) + ::com::sun::star::util::XModifyListener > XModifyListenerRef; +typedef boost::ptr_vector<XModifyListenerRef> XModifyListenerArr_Impl; class ScNamedEntry; typedef ScNamedEntry* ScNamedEntryPtr; |