summaryrefslogtreecommitdiff
path: root/sfx2/inc/arrdecl.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-14 11:17:05 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-20 19:46:39 +0200
commit20aa56cc713866255475aa7fbc4218bf0a58b581 (patch)
tree78d4c54c53d278bf33847162a53ffa5d5765c9d4 /sfx2/inc/arrdecl.hxx
parent59713265ece84a7775dfed209f4b42c53ec95a34 (diff)
Convert SV_DECL_PTRARR(SfxViewShellArr_Impl) to std::vector
Change-Id: I91c33be902e20f72623c3d9642057db5eb6e30ba
Diffstat (limited to 'sfx2/inc/arrdecl.hxx')
-rw-r--r--sfx2/inc/arrdecl.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/inc/arrdecl.hxx b/sfx2/inc/arrdecl.hxx
index 64633faabe0a..ad25bea7a413 100644
--- a/sfx2/inc/arrdecl.hxx
+++ b/sfx2/inc/arrdecl.hxx
@@ -40,7 +40,7 @@ class SfxViewFrame;
SV_DECL_PTRARR( SfxViewFrameArr_Impl, SfxViewFrame*, 4 )
class SfxViewShell;
-SV_DECL_PTRARR( SfxViewShellArr_Impl, SfxViewShell*, 4 )
+class SfxViewShellArr_Impl : public std::vector<SfxViewShell*> {};
struct SfxTbxCtrlFactory;
class SfxTbxCtrlFactArr_Impl : public std::vector<SfxTbxCtrlFactory*>