diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-03 10:47:36 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-03 10:47:36 +0100 |
commit | 4c3f33d8d54756d3988c4d4c848712b31027f919 (patch) | |
tree | c4b3f6e3420bc989fcd8a1bf13a9c20738349cd1 /sfx2 | |
parent | c8eede4ee31e5000a782769ec311dc5f68532382 (diff) |
callcatcher: remove unused methods
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/inc/sfx2/app.hxx | 1 | ||||
-rw-r--r-- | sfx2/source/appl/app.cxx | 9 | ||||
-rw-r--r-- | sfx2/source/appl/appdata.cxx | 1 | ||||
-rw-r--r-- | sfx2/source/inc/appdata.hxx | 1 |
4 files changed, 0 insertions, 12 deletions
diff --git a/sfx2/inc/sfx2/app.hxx b/sfx2/inc/sfx2/app.hxx index cbf89c68051b..63be1de6b2f6 100644 --- a/sfx2/inc/sfx2/app.hxx +++ b/sfx2/inc/sfx2/app.hxx @@ -164,7 +164,6 @@ public: // Resource Manager SfxResourceManager& GetResourceManager() const; ResMgr* GetSfxResManager(); - SimpleResMgr* GetSimpleResManager(); static ResMgr* CreateResManager( const char *pPrefix ); SimpleResMgr* CreateSimpleResManager(); diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx index 89f103acbfa5..67168a53e63b 100644 --- a/sfx2/source/appl/app.cxx +++ b/sfx2/source/appl/app.cxx @@ -530,15 +530,6 @@ ResMgr* SfxApplication::GetSfxResManager() return SfxResId::GetResMgr(); } -//-------------------------------------------------------------------- - -SimpleResMgr* SfxApplication::GetSimpleResManager() -{ - if ( !pAppData_Impl->pSimpleResManager ) - pAppData_Impl->pSimpleResManager = CreateSimpleResManager(); - return pAppData_Impl->pSimpleResManager; -} - //------------------------------------------------------------------------ void SfxApplication::SetProgress_Impl diff --git a/sfx2/source/appl/appdata.cxx b/sfx2/source/appl/appdata.cxx index 3838526a9eb1..81fabb9c9f31 100644 --- a/sfx2/source/appl/appdata.cxx +++ b/sfx2/source/appl/appdata.cxx @@ -121,7 +121,6 @@ SfxAppData_Impl::SfxAppData_Impl( SfxApplication* ) : , pObjShells(0) , pSfxResManager(0) , pOfaResMgr(0) - , pSimpleResManager(0) , pBasicManager( new SfxBasicManagerHolder ) , pBasMgrListener( new SfxBasicManagerCreationListener( *this ) ) , pViewFrame( 0 ) diff --git a/sfx2/source/inc/appdata.hxx b/sfx2/source/inc/appdata.hxx index dfcf9bacc09d..5e31a7b537a6 100644 --- a/sfx2/source/inc/appdata.hxx +++ b/sfx2/source/inc/appdata.hxx @@ -150,7 +150,6 @@ public: SfxObjectShellArr_Impl* pObjShells; ResMgr* pSfxResManager; ResMgr* pOfaResMgr; - SimpleResMgr* pSimpleResManager; SfxBasicManagerHolder* pBasicManager; SfxBasicManagerCreationListener* pBasMgrListener; |