summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-21 12:47:31 +0200
committerNoel Grandin <noel@peralex.com>2015-10-21 12:47:31 +0200
commit017f3d1aafd05603e1afd316f5e0dce19f7b08aa (patch)
treec1aa9702b30b6dbe8e0347aef04afa775ec8d688 /sc/inc
parent6231a9b4e926d5dc213f94ddf35b14bab411d77d (diff)
boost::ptr_vector -> std::vector
no need to store uno::Reference on the heap Change-Id: Iec3abe2190648e85a37b22763c8d19ba29634373
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/linkuno.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/sc/inc/linkuno.hxx b/sc/inc/linkuno.hxx
index cc74a8af4931..e4a96429f984 100644
--- a/sc/inc/linkuno.hxx
+++ b/sc/inc/linkuno.hxx
@@ -41,14 +41,12 @@
#include "externalrefmgr.hxx"
-#include <boost/ptr_container/ptr_vector.hpp>
+#include <vector>
class ScDocShell;
class ScTableLink;
-typedef ::com::sun::star::uno::Reference<
- ::com::sun::star::util::XRefreshListener > XRefreshListenerRef;
-typedef boost::ptr_vector<XRefreshListenerRef> XRefreshListenerArr_Impl;
+typedef std::vector< css::uno::Reference< css::util::XRefreshListener > > XRefreshListenerArr_Impl;
class ScSheetLinkObj : public cppu::WeakImplHelper<
com::sun::star::container::XNamed,