diff options
author | Noel Grandin <noel@peralex.com> | 2012-06-07 11:17:49 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-06-12 23:25:08 +0200 |
commit | 509e87d05379f7bd7ecf842e7114ccaa9a3d6020 (patch) | |
tree | 14905e8dea4be4833dd6c6fda6de5a2a6fa4a56a /sc/inc | |
parent | 480f84943b38a51764cde81c42bfee11510fbcf2 (diff) |
Convert SV_DECL_PTR_ARR_DEL(XStatusListenerArr_Impl) to ptr_vector
Change-Id: I2375831167dff55b7906cc7ae8c8a1b53fc88125
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/dispuno.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/inc/dispuno.hxx b/sc/inc/dispuno.hxx index 8577d37be7bd..29209f27505b 100644 --- a/sc/inc/dispuno.hxx +++ b/sc/inc/dispuno.hxx @@ -35,6 +35,7 @@ #include <svl/lstner.hxx> #include <svl/svarray.hxx> #include "global.hxx" // ScImportParam +#include <boost/ptr_container/ptr_vector.hpp> namespace com { namespace sun { namespace star { namespace frame { @@ -45,8 +46,8 @@ class ScTabViewShell; typedef ::com::sun::star::uno::Reference< - ::com::sun::star::frame::XStatusListener >* XStatusListenerPtr; -SV_DECL_PTRARR_DEL( XStatusListenerArr_Impl, XStatusListenerPtr, 4 ) + ::com::sun::star::frame::XStatusListener > XStatusListenerRef; +typedef boost::ptr_vector<XStatusListenerRef> XStatusListenerArr_Impl; class ScDispatchProviderInterceptor : public cppu::WeakImplHelper2< |