diff options
author | Michael Meeks <michael.meeks@novell.com> | 2011-08-01 12:24:43 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2011-08-01 12:24:43 +0100 |
commit | a4c573ada09a8f5bcaae4ecca757ce76cf6d057e (patch) | |
tree | c7d1b5eb45e435db6a69c977d85196fdb669bffc /basic | |
parent | 599239487421675107fb5832a6faa5443951533e (diff) |
move required SttResId into libapp.a where it is required for automation/
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/app/app.cxx | 5 | ||||
-rw-r--r-- | basic/source/runtime/basrdll.cxx | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/basic/source/app/app.cxx b/basic/source/app/app.cxx index f1bdd3f0e69e..f605e9510813 100644 --- a/basic/source/app/app.cxx +++ b/basic/source/app/app.cxx @@ -85,6 +85,11 @@ using ::rtl::OUStringToOString; IMPL_GEN_RES_STR; +SttResId::SttResId( sal_uInt32 nId ) : + ResId( nId, *((*(BasicDLL**)GetAppData(SHL_BASIC))->GetSttResMgr()) ) +{ +} + #ifdef DBG_UTIL // filter Messages generated due to missing configuration Bug:#83887# void TestToolDebugMessageFilter( const sal_Char *pString, sal_Bool bIsOsl ) diff --git a/basic/source/runtime/basrdll.cxx b/basic/source/runtime/basrdll.cxx index 910ecce98f72..1f05688087f2 100644 --- a/basic/source/runtime/basrdll.cxx +++ b/basic/source/runtime/basrdll.cxx @@ -39,11 +39,6 @@ #include <basrid.hxx> #include <sb.hrc> -SttResId::SttResId( sal_uInt32 nId ) : - ResId( nId, *((*(BasicDLL**)GetAppData(SHL_BASIC))->GetSttResMgr()) ) -{ -} - BasResId::BasResId( sal_uInt32 nId ) : ResId( nId, *((*(BasicDLL**)GetAppData(SHL_BASIC))->GetBasResMgr()) ) { |