diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-07-29 14:27:34 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-07-29 14:27:43 +0200 |
commit | 551f76f410c5a2b8efb7e4736ca0e1440bd58276 (patch) | |
tree | 7c68a21f3fb018a75c1317c3ef5b4dd9e5e97f81 /sfx2/source/bastyp | |
parent | 7dad065277b82bf5b943f56818b259d0d211346f (diff) |
Drop unnecessary SfxApplication::CreateResManager wrapper
Change-Id: I2b8662ec85b8f710aa17a2c6f59c4b35af7685f3
Diffstat (limited to 'sfx2/source/bastyp')
-rw-r--r-- | sfx2/source/bastyp/sfxresid.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
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; |