diff options
Diffstat (limited to 'sfx2/source/appl/appmisc.cxx')
-rw-r--r-- | sfx2/source/appl/appmisc.cxx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sfx2/source/appl/appmisc.cxx b/sfx2/source/appl/appmisc.cxx index eec9e802f7b4..1e57943d3942 100644 --- a/sfx2/source/appl/appmisc.cxx +++ b/sfx2/source/appl/appmisc.cxx @@ -88,10 +88,6 @@ using namespace ::com::sun::star::container; //=================================================================== -SV_IMPL_PTRARR( SfxTbxCtrlFactArr_Impl, SfxTbxCtrlFactory* ); - -//=================================================================== - #define SfxApplication #include "sfxslots.hxx" @@ -297,4 +293,11 @@ SfxStbCtrlFactArr_Impl::~SfxStbCtrlFactArr_Impl() for( const_iterator it = begin(); it != end(); ++it ) delete *it; } + +SfxTbxCtrlFactArr_Impl::~SfxTbxCtrlFactArr_Impl() +{ + for( const_iterator it = begin(); it != end(); ++it ) + delete *it; +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |