summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-07-29 14:27:34 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-07-29 14:27:43 +0200
commit551f76f410c5a2b8efb7e4736ca0e1440bd58276 (patch)
tree7c68a21f3fb018a75c1317c3ef5b4dd9e5e97f81
parent7dad065277b82bf5b943f56818b259d0d211346f (diff)
Drop unnecessary SfxApplication::CreateResManager wrapper
Change-Id: I2b8662ec85b8f710aa17a2c6f59c4b35af7685f3
-rw-r--r--include/sfx2/app.hxx1
-rw-r--r--sc/source/ui/app/scmod.cxx2
-rw-r--r--sd/source/ui/app/sdmod.cxx3
-rw-r--r--sfx2/source/appl/app.cxx9
-rw-r--r--sfx2/source/appl/appinit.cxx4
-rw-r--r--sfx2/source/appl/appserv.cxx2
-rw-r--r--sfx2/source/bastyp/sfxresid.cxx3
-rw-r--r--starmath/source/smmod.cxx3
-rw-r--r--sw/source/ui/dialog/swdialmgr.cxx4
-rw-r--r--sw/source/uibase/app/swmodule.cxx2
10 files changed, 10 insertions, 23 deletions
diff --git a/include/sfx2/app.hxx b/include/sfx2/app.hxx
index 09286352018d..0a11a0616b5a 100644
--- a/include/sfx2/app.hxx
+++ b/include/sfx2/app.hxx
@@ -153,7 +153,6 @@ public:
// Resource Manager
ResMgr* GetSfxResManager();
- static ResMgr* CreateResManager( const char *pPrefix );
// DDE
#if defined( WNT )
diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx
index d534592df90d..84eddf0210f0 100644
--- a/sc/source/ui/app/scmod.cxx
+++ b/sc/source/ui/app/scmod.cxx
@@ -130,7 +130,7 @@ void ScModule::InitInterface_Impl()
}
ScModule::ScModule( SfxObjectFactory* pFact ) :
- SfxModule( SfxApplication::CreateResManager( "sc" ), false, pFact, NULL ),
+ SfxModule( ResMgr::CreateResMgr( "sc" ), false, pFact, NULL ),
mpDragData(new ScDragData),
mpClipData(new ScClipData),
pSelTransfer( NULL ),
diff --git a/sd/source/ui/app/sdmod.cxx b/sd/source/ui/app/sdmod.cxx
index 9bd820d35c6d..8bde8c426a02 100644
--- a/sd/source/ui/app/sdmod.cxx
+++ b/sd/source/ui/app/sdmod.cxx
@@ -22,7 +22,6 @@
#include <unotools/ucbstreamhelper.hxx>
#include <tools/urlobj.hxx>
#include <vcl/virdev.hxx>
-#include <sfx2/app.hxx>
#include <vcl/status.hxx>
#include <svl/intitem.hxx>
#include <sfx2/msg.hxx>
@@ -68,7 +67,7 @@ void SdModule::InitInterface_Impl()
// Ctor
SdModule::SdModule(SfxObjectFactory* pFact1, SfxObjectFactory* pFact2 )
-: SfxModule( SfxApplication::CreateResManager("sd"), false,
+: SfxModule( ResMgr::CreateResMgr("sd"), false,
pFact1, pFact2, NULL ),
pTransferClip(NULL),
pTransferDrag(NULL),
diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx
index e30cd78bad8d..848c7a42b5c5 100644
--- a/sfx2/source/appl/app.cxx
+++ b/sfx2/source/appl/app.cxx
@@ -375,15 +375,6 @@ void SfxApplication::SetViewFrame_Impl( SfxViewFrame *pFrame )
pFrame->GetViewShell()->SetCurrentDocument();
}
-
-
-ResMgr* SfxApplication::CreateResManager( const char *pPrefix )
-{
- return ResMgr::CreateResMgr(pPrefix);
-}
-
-
-
ResMgr* SfxApplication::GetSfxResManager()
{
return SfxResId::GetResMgr();
diff --git a/sfx2/source/appl/appinit.cxx b/sfx2/source/appl/appinit.cxx
index 9f2c54868c34..7ee6c22afe51 100644
--- a/sfx2/source/appl/appinit.cxx
+++ b/sfx2/source/appl/appinit.cxx
@@ -228,9 +228,9 @@ bool SfxApplication::Initialize_Impl()
RID_ERRHDL, ERRCODE_AREA_TOOLS, ERRCODE_AREA_LIB1);
#ifndef DISABLE_SCRIPTING
- pAppData_Impl->pBasicResMgr = CreateResManager("sb");
+ pAppData_Impl->pBasicResMgr = ResMgr::CreateResMgr("sb");
#endif
- pAppData_Impl->pSvtResMgr = CreateResManager("svt");
+ pAppData_Impl->pSvtResMgr = ResMgr::CreateResMgr("svt");
pAppData_Impl->m_pSoErrorHdl = new SfxErrorHandler(
RID_SO_ERROR_HANDLER, ERRCODE_AREA_SO, ERRCODE_AREA_SO_END, pAppData_Impl->pSvtResMgr );
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx
index f3aaed6aea1d..90ca40937452 100644
--- a/sfx2/source/appl/appserv.cxx
+++ b/sfx2/source/appl/appserv.cxx
@@ -884,7 +884,7 @@ OUString ChooseMacro( const Reference< XModel >& rxLimitToDocument, bool bChoose
ResMgr* SfxApplication::GetOffResManager_Impl()
{
if ( !pAppData_Impl->pOfaResMgr )
- pAppData_Impl->pOfaResMgr = CreateResManager( "ofa");
+ pAppData_Impl->pOfaResMgr = ResMgr::CreateResMgr( "ofa");
return pAppData_Impl->pOfaResMgr;
}
diff --git a/sfx2/source/bastyp/sfxresid.cxx b/sfx2/source/bastyp/sfxresid.cxx
index 32487df00e17..69de5b748131 100644
--- a/sfx2/source/bastyp/sfxresid.cxx
+++ b/sfx2/source/bastyp/sfxresid.cxx
@@ -19,7 +19,6 @@
#include <sfx2/sfxresid.hxx>
-#include <sfx2/app.hxx>
#include "tools/resmgr.hxx"
@@ -36,7 +35,7 @@ ResMgr* SfxResId::GetResMgr()
{
if ( !pMgr )
{
- pMgr = SfxApplication::CreateResManager("sfx");
+ pMgr = ResMgr::CreateResMgr("sfx");
}
return pMgr;
diff --git a/starmath/source/smmod.cxx b/starmath/source/smmod.cxx
index 8bc1ddc464a3..7a746f44e738 100644
--- a/starmath/source/smmod.cxx
+++ b/starmath/source/smmod.cxx
@@ -20,7 +20,6 @@
#include <tools/globname.hxx>
#include <vcl/status.hxx>
#include <sfx2/msg.hxx>
-#include <sfx2/app.hxx>
#include <sfx2/objface.hxx>
#include <svl/whiter.hxx>
#include <sfx2/request.hxx>
@@ -164,7 +163,7 @@ void SmModule::InitInterface_Impl()
}
SmModule::SmModule(SfxObjectFactory* pObjFact) :
- SfxModule(SfxApplication::CreateResManager("sm"), false, pObjFact, NULL),
+ SfxModule(ResMgr::CreateResMgr("sm"), false, pObjFact, NULL),
pColorConfig( 0 ),
pConfig( 0 ),
pLocSymbolData( 0 ),
diff --git a/sw/source/ui/dialog/swdialmgr.cxx b/sw/source/ui/dialog/swdialmgr.cxx
index fb6ed35c38d9..405e083a77cc 100644
--- a/sw/source/ui/dialog/swdialmgr.cxx
+++ b/sw/source/ui/dialog/swdialmgr.cxx
@@ -18,7 +18,7 @@
*/
#include "dialmgr.hxx"
-#include <sfx2/app.hxx>
+#include <tools/resmgr.hxx>
#ifndef DISABLE_DYNLOADING
ResMgr* pSwResMgr=0;
@@ -30,7 +30,7 @@ ResMgr* SwDialogsResMgr::GetResMgr()
{
if ( !pSwResMgr )
{
- pSwResMgr = SfxApplication::CreateResManager( "sw" );
+ pSwResMgr = ResMgr::CreateResMgr( "sw" );
}
return pSwResMgr;
diff --git a/sw/source/uibase/app/swmodule.cxx b/sw/source/uibase/app/swmodule.cxx
index 8a48251289e2..acc4d051739d 100644
--- a/sw/source/uibase/app/swmodule.cxx
+++ b/sw/source/uibase/app/swmodule.cxx
@@ -150,7 +150,7 @@ using namespace ::com::sun::star::uno;
SwModule::SwModule( SfxObjectFactory* pWebFact,
SfxObjectFactory* pFact,
SfxObjectFactory* pGlobalFact )
- : SfxModule( SfxApplication::CreateResManager( "sw" ), false, pWebFact,
+ : SfxModule( ResMgr::CreateResMgr( "sw" ), false, pWebFact,
pFact, pGlobalFact, NULL ),
pModuleConfig(0),
pUsrPref(0),