diff options
author | Noel Grandin <noel@peralex.com> | 2012-06-07 08:09:51 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-06-20 19:46:36 +0200 |
commit | 01f31217482c38a2fe27683d62d0d07ba83d88c4 (patch) | |
tree | 0c73ca9f53fe73001cc2ae9f242b9fdfa181ec24 /sc/workben | |
parent | b64c730520204a6aa81e705532bb191450510519 (diff) |
Convert SV_DECL_PTRARR_DEL(XResultListenerArr_Impl) to ptr_vector
Change-Id: Id557b0116ec2574ef3e11a0664fb408ecc850e6e
Diffstat (limited to 'sc/workben')
-rw-r--r-- | sc/workben/result.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/workben/result.hxx b/sc/workben/result.hxx index 0a9912584787..bb1fd8647b90 100644 --- a/sc/workben/result.hxx +++ b/sc/workben/result.hxx @@ -32,6 +32,7 @@ #include <svl/svarray.hxx> #include <vcl/timer.hxx> #include <tools/string.hxx> +#include <boost/ptr_container/ptr_vector.hpp> #include <com/sun/star/sheet/XVolatileResult.hpp> @@ -41,7 +42,7 @@ //class XResultListenerRef; typedef ::com::sun::star::uno::Reference< ::com::sun::star::sheet::XResultListener >* XResultListenerPtr; -SV_DECL_PTRARR_DEL( XResultListenerArr_Impl, XResultListenerPtr, 4 ); +typedef boost::ptr_vector<XResultListenerPtr> XResultListenerArr_Impl; class ScAddInResult : public cppu::WeakImplHelper1< |