summaryrefslogtreecommitdiff
path: root/sfx2/inc/arrdecl.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-14 12:01:17 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-20 19:46:39 +0200
commit5baef2f4d8cc6e3b27660a044980b9a4ce14d17b (patch)
tree2faf05a212ab16acf52b3cbce658b1d43d283c54 /sfx2/inc/arrdecl.hxx
parentaf50c7d9ce96de45d40e6c1462bf1682ce7572a5 (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.hxx4
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*> {};