summaryrefslogtreecommitdiff
path: root/sc/inc/linkuno.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-07 10:52:05 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-12 23:25:08 +0200
commit480f84943b38a51764cde81c42bfee11510fbcf2 (patch)
tree8d2ec78586534fd87c81a5594d17a3c083b2dd38 /sc/inc/linkuno.hxx
parentddaf53acd4f4052d90d3685f3c158b773ce3433d (diff)
Convert SV_DECL_PTR_ARR_DEL(XRefreshListenerArr_Impl) to ptr_vector
Change-Id: Ic541506a426e056909f6c5cb67af166d4081ea89
Diffstat (limited to 'sc/inc/linkuno.hxx')
-rw-r--r--sc/inc/linkuno.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/linkuno.hxx b/sc/inc/linkuno.hxx
index 9be4cecba81c..60d9445f33e7 100644
--- a/sc/inc/linkuno.hxx
+++ b/sc/inc/linkuno.hxx
@@ -54,15 +54,15 @@
#include "externalrefmgr.hxx"
#include <boost/unordered_map.hpp>
-#include <vector>
+#include <boost/ptr_container/ptr_vector.hpp>
class ScAreaLink;
class ScDocShell;
class ScTableLink;
typedef ::com::sun::star::uno::Reference<
- ::com::sun::star::util::XRefreshListener >* XRefreshListenerPtr;
-SV_DECL_PTRARR_DEL( XRefreshListenerArr_Impl, XRefreshListenerPtr, 4 )
+ ::com::sun::star::util::XRefreshListener > XRefreshListenerRef;
+typedef boost::ptr_vector<XRefreshListenerRef> XRefreshListenerArr_Impl;