summaryrefslogtreecommitdiff
path: root/sfx2/inc/arrdecl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/inc/arrdecl.hxx')
-rw-r--r--sfx2/inc/arrdecl.hxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/sfx2/inc/arrdecl.hxx b/sfx2/inc/arrdecl.hxx
index 6e5160481edc..64633faabe0a 100644
--- a/sfx2/inc/arrdecl.hxx
+++ b/sfx2/inc/arrdecl.hxx
@@ -43,7 +43,12 @@ class SfxViewShell;
SV_DECL_PTRARR( SfxViewShellArr_Impl, SfxViewShell*, 4 )
struct SfxTbxCtrlFactory;
-SV_DECL_PTRARR_DEL( SfxTbxCtrlFactArr_Impl, SfxTbxCtrlFactory*, 8 )
+class SfxTbxCtrlFactArr_Impl : public std::vector<SfxTbxCtrlFactory*>
+{
+public:
+ // de-allocates child objects
+ ~SfxTbxCtrlFactArr_Impl();
+};
struct SfxStbCtrlFactory;
class SfxStbCtrlFactArr_Impl : public std::vector<SfxStbCtrlFactory*>