summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-08-03 10:47:36 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-08-03 10:47:36 +0100
commitaa0c8241c75f8f336c40690f0a202d35a56a65f6 (patch)
tree4e7dc8f4649e3219031937e5eeb047384c96b500 /sfx2
parentb749f0520353c901954cb337c9cc9aa726dc63cd (diff)
callcatcher: remove unused methods
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/inc/sfx2/app.hxx1
-rw-r--r--sfx2/source/appl/app.cxx9
-rw-r--r--sfx2/source/appl/appdata.cxx1
-rw-r--r--sfx2/source/inc/appdata.hxx1
4 files changed, 0 insertions, 12 deletions
diff --git a/sfx2/inc/sfx2/app.hxx b/sfx2/inc/sfx2/app.hxx
index 7684757c59..5bc5a1ea9e 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 6a37c67d98..672713a355 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 6404431ead..1ed29722d9 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 aa180a642b..8dcfffe1e8 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;