diff options
author | August Sodora <augsod@gmail.com> | 2012-01-20 01:01:41 -0500 |
---|---|---|
committer | August Sodora <augsod@gmail.com> | 2012-01-20 13:47:57 -0500 |
commit | cd7bd2ff39fbb35121d34d1a3319587cce1a96b3 (patch) | |
tree | 1ea6a7e429479a466c92070ed553c2b07136fa78 /sfx2 | |
parent | 85c58cd3ad210a4be49842ec0f272b2aebc5938e (diff) |
Remove unused SV_DECL_PTRARR
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/inc/arrdecl.hxx | 4 | ||||
-rw-r--r-- | sfx2/inc/sfx2/msgpool.hxx | 2 | ||||
-rw-r--r-- | sfx2/source/control/msgpool.cxx | 1 |
3 files changed, 0 insertions, 7 deletions
diff --git a/sfx2/inc/arrdecl.hxx b/sfx2/inc/arrdecl.hxx index 2d33577f1692..2bbd34a276c5 100644 --- a/sfx2/inc/arrdecl.hxx +++ b/sfx2/inc/arrdecl.hxx @@ -73,10 +73,6 @@ struct SfxExternalLib_Impl; typedef SfxExternalLib_Impl* SfxExternalLibPtr; SV_DECL_PTRARR_DEL( SfxExternalLibArr_Impl, SfxExternalLibPtr, 2, 2 ) -class SfxSlot; -typedef SfxSlot* SfxSlotPtr; -SV_DECL_PTRARR( SfxSlotArr_Impl, SfxSlotPtr, 20, 20 ) - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sfx2/inc/sfx2/msgpool.hxx b/sfx2/inc/sfx2/msgpool.hxx index 41de48549453..425ecd7149d2 100644 --- a/sfx2/inc/sfx2/msgpool.hxx +++ b/sfx2/inc/sfx2/msgpool.hxx @@ -42,7 +42,6 @@ class SfxInterface; class SfxSlot; class SfxInterfaceArr_Impl; class SfxSlotTypeArr_Impl; -class SfxSlotArr_Impl; typedef std::basic_string< sal_uInt16 > SfxSlotGroupArr_Impl; @@ -58,7 +57,6 @@ class SFX2_DLLPUBLIC SfxSlotPool sal_uInt16 _nCurGroup; sal_uInt16 _nCurInterface; sal_uInt16 _nCurMsg; - SfxSlotArr_Impl* _pUnoSlots; private: const SfxSlot* SeekSlot( sal_uInt16 nObject ); diff --git a/sfx2/source/control/msgpool.cxx b/sfx2/source/control/msgpool.cxx index c9afd9869204..9667d72dc4ed 100644 --- a/sfx2/source/control/msgpool.cxx +++ b/sfx2/source/control/msgpool.cxx @@ -69,7 +69,6 @@ SfxSlotPool::SfxSlotPool( SfxSlotPool *pParent, ResMgr* pResManager ) , _nCurGroup(0) , _nCurInterface(0) , _nCurMsg(0) - , _pUnoSlots( 0 ) { if ( !_pResMgr ) _pResMgr = SfxApplication::GetOrCreate()->GetOffResManager_Impl(); |