summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@novell.com>2011-08-01 12:24:43 +0100
committerMichael Meeks <michael.meeks@novell.com>2011-08-01 12:24:43 +0100
commited0862a8f4a09aefaa73bdbd65244aa8c58f6e1c (patch)
treed53e6b55c8567dbc9b6fce14f6dabfb951b30ca2
parent055997e42aeacc48f45e5482a69bd3e91bf3e914 (diff)
move required SttResId into libapp.a where it is required for automation/
-rw-r--r--basic/source/app/app.cxx5
-rw-r--r--basic/source/runtime/basrdll.cxx5
2 files changed, 5 insertions, 5 deletions
diff --git a/basic/source/app/app.cxx b/basic/source/app/app.cxx
index a143b53e24..e994f911dc 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 c6deda08e5..4007266d4c 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()) )
{