diff options
author | Noel Grandin <noel@peralex.com> | 2012-06-14 12:01:17 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-06-20 19:46:39 +0200 |
commit | 5baef2f4d8cc6e3b27660a044980b9a4ce14d17b (patch) | |
tree | 2faf05a212ab16acf52b3cbce658b1d43d283c54 /sfx2/inc/arrdecl.hxx | |
parent | af50c7d9ce96de45d40e6c1462bf1682ce7572a5 (diff) |
Convert SV_DECL_PTRARR(SfxObjectShellArr_Impl) to std::vector
Change-Id: I9f26d380526c63a8b86b42a5b0b74a7cfff71249
Diffstat (limited to 'sfx2/inc/arrdecl.hxx')
-rw-r--r-- | sfx2/inc/arrdecl.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sfx2/inc/arrdecl.hxx b/sfx2/inc/arrdecl.hxx index 9d1644640ae9..bfade8e7e303 100644 --- a/sfx2/inc/arrdecl.hxx +++ b/sfx2/inc/arrdecl.hxx @@ -28,13 +28,11 @@ #ifndef _SFX_ARRDECL_HXX #define _SFX_ARRDECL_HXX -#include <svl/svarray.hxx> #include <sfx2/minarray.hxx> #include <vector> -#include <boost/ptr_container/ptr_vector.hpp> class SfxObjectShell; -SV_DECL_PTRARR( SfxObjectShellArr_Impl, SfxObjectShell*, 4 ) +class SfxObjectShellArr_Impl : public std::vector<SfxObjectShell*> {}; class SfxViewFrame; class SfxViewFrameArr_Impl : public std::vector<SfxViewFrame*> {}; |