summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-02-23 17:01:23 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-02-23 17:05:10 +0100
commit86ffa606478d18968babe809931be65463399fbb (patch)
treeec4772a2a3df014b39211dc5c2e5ffc7d7d548c2 /basic
parent64de14a0c14d5c0f47692f4a956d71bfe75614aa (diff)
Get rid of CREATEVERSIONRESMGR[_NAME]
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/basrdll.cxx2
-rw-r--r--basic/source/sbx/sbxscan.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/runtime/basrdll.cxx b/basic/source/runtime/basrdll.cxx
index e792c03f750d..24add65c00cc 100644
--- a/basic/source/runtime/basrdll.cxx
+++ b/basic/source/runtime/basrdll.cxx
@@ -46,7 +46,7 @@ BasicDLL::BasicDLL()
{
BASIC_DLL() = this;
::com::sun::star::lang::Locale aLocale = Application::GetSettings().GetUILocale();
- pBasResMgr = ResMgr::CreateResMgr(CREATEVERSIONRESMGR_NAME(sb), aLocale );
+ pBasResMgr = ResMgr::CreateResMgr("sb", aLocale );
bDebugMode = sal_False;
bBreakEnabled = sal_True;
}
diff --git a/basic/source/sbx/sbxscan.cxx b/basic/source/sbx/sbxscan.cxx
index d938763edc95..18bb46d57965 100644
--- a/basic/source/sbx/sbxscan.cxx
+++ b/basic/source/sbx/sbxscan.cxx
@@ -623,7 +623,7 @@ ResMgr* implGetResMgr( void )
if( !pResMgr )
{
::com::sun::star::lang::Locale aLocale = Application::GetSettings().GetUILocale();
- pResMgr = ResMgr::CreateResMgr(CREATEVERSIONRESMGR_NAME(sb), aLocale );
+ pResMgr = ResMgr::CreateResMgr("sb", aLocale );
}
return pResMgr;
}