diff options
author | Derrick Rocha <drocha616@gmail.com> | 2015-09-12 16:49:29 -0600 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-13 06:25:18 +0000 |
commit | 927447356fb7025d2b61073f525adc24643c7925 (patch) | |
tree | cd1f3b5471a91e1f56463fd2fe7f02f2ee8d4123 /sc/inc/dispuno.hxx | |
parent | d8707b06e4b5a1dc6934ba4c15774d370eed6535 (diff) |
replace boost::ptr_container with std::container<std::unique_ptr>
Change-Id: I8fd1121577c6443f9100b181402083d1b7c30b6b
Reviewed-on: https://gerrit.libreoffice.org/18525
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc/inc/dispuno.hxx')
-rw-r--r-- | sc/inc/dispuno.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/inc/dispuno.hxx b/sc/inc/dispuno.hxx index 9638ed5f72dc..3b57717461ad 100644 --- a/sc/inc/dispuno.hxx +++ b/sc/inc/dispuno.hxx @@ -25,7 +25,6 @@ #include <cppuhelper/implbase.hxx> #include <svl/lstner.hxx> #include "global.hxx" -#include <boost/ptr_container/ptr_vector.hpp> namespace com { namespace sun { namespace star { namespace frame { class XDispatchProviderInterception; @@ -35,7 +34,7 @@ class ScTabViewShell; typedef ::com::sun::star::uno::Reference< ::com::sun::star::frame::XStatusListener > XStatusListenerRef; -typedef boost::ptr_vector<XStatusListenerRef> XStatusListenerArr_Impl; +typedef std::vector<XStatusListenerRef> XStatusListenerArr_Impl; class ScDispatchProviderInterceptor : public cppu::WeakImplHelper< com::sun::star::frame::XDispatchProviderInterceptor, |