diff options
Diffstat (limited to 'sfx2/source/appl/module.cxx')
-rw-r--r-- | sfx2/source/appl/module.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sfx2/source/appl/module.cxx b/sfx2/source/appl/module.cxx index 5e2e7ad44c8e..6ddcf09c77c7 100644 --- a/sfx2/source/appl/module.cxx +++ b/sfx2/source/appl/module.cxx @@ -175,7 +175,6 @@ void SfxModule::Construct_Impl() } - SfxModule::~SfxModule() { if( !bDummy ) @@ -202,14 +201,12 @@ SfxModule::~SfxModule() } - SfxSlotPool* SfxModule::GetSlotPool() const { return pImpl->pSlotPool; } - void SfxModule::RegisterChildWindow(SfxChildWinFactory *pFact) { DBG_ASSERT( pImpl, "No real Module!" ); @@ -231,7 +228,6 @@ void SfxModule::RegisterChildWindow(SfxChildWinFactory *pFact) } - void SfxModule::RegisterToolBoxControl( const SfxTbxCtrlFactory& rFact ) { if (!pImpl->pTbxCtrlFac) @@ -253,7 +249,6 @@ void SfxModule::RegisterToolBoxControl( const SfxTbxCtrlFactory& rFact ) } - void SfxModule::RegisterStatusBarControl( const SfxStbCtrlFactory& rFact ) { if (!pImpl->pStbCtrlFac) @@ -275,7 +270,6 @@ void SfxModule::RegisterStatusBarControl( const SfxStbCtrlFactory& rFact ) } - void SfxModule::RegisterMenuControl( const SfxMenuCtrlFactory& rFact ) { if (!pImpl->pMenuCtrlFac) @@ -297,28 +291,24 @@ void SfxModule::RegisterMenuControl( const SfxMenuCtrlFactory& rFact ) } - SfxTbxCtrlFactArr_Impl* SfxModule::GetTbxCtrlFactories_Impl() const { return pImpl->pTbxCtrlFac; } - SfxStbCtrlFactArr_Impl* SfxModule::GetStbCtrlFactories_Impl() const { return pImpl->pStbCtrlFac; } - SfxMenuCtrlFactArr_Impl* SfxModule::GetMenuCtrlFactories_Impl() const { return pImpl->pMenuCtrlFac; } - SfxChildWinFactArr_Impl* SfxModule::GetChildWinFactories_Impl() const { return pImpl->pFactArr; |