From 509e87d05379f7bd7ecf842e7114ccaa9a3d6020 Mon Sep 17 00:00:00 2001
From: Noel Grandin <noel@peralex.com>
Date: Thu, 7 Jun 2012 11:17:49 +0200
Subject: Convert SV_DECL_PTR_ARR_DEL(XStatusListenerArr_Impl) to ptr_vector

Change-Id: I2375831167dff55b7906cc7ae8c8a1b53fc88125
---
 sc/inc/dispuno.hxx | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

(limited to 'sc/inc')

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<
-- 
cgit