diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-05-05 07:49:19 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-05-05 07:49:19 +0000 |
commit | a4134442ae3af5aff29d4dc8da91fd31131ba1a7 (patch) | |
tree | cee735e8e9a32a8fe29fcefa820523d04c303395 | |
parent | 6d688fb21da0e93658a10a42e4ac946690b6574d (diff) |
INTEGRATION: CWS ab26 (1.3.12); FILE MERGED
2006/04/27 14:06:46 ab 1.3.12.1: #i61255# Create own ResMgr in Basic
-rw-r--r-- | basic/source/runtime/basrdll.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/basic/source/runtime/basrdll.cxx b/basic/source/runtime/basrdll.cxx index abea0f8caa02..57f553f234e4 100644 --- a/basic/source/runtime/basrdll.cxx +++ b/basic/source/runtime/basrdll.cxx @@ -4,9 +4,9 @@ * * $RCSfile: basrdll.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: vg $ $Date: 2006-04-07 14:51:27 $ + * last change: $Author: rt $ $Date: 2006-05-05 08:49:19 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -62,7 +62,8 @@ BasicResId::BasicResId( USHORT nId ): BasicDLL::BasicDLL() { *(BasicDLL**)GetAppData(SHL_BASIC) = this; - pResMgr = NULL; + ::com::sun::star::lang::Locale aLocale = Application::GetSettings().GetUILocale(); + pResMgr = ResMgr::CreateResMgr(CREATEVERSIONRESMGR_NAME(ofa), aLocale ); bDebugMode = FALSE; bBreakEnabled = TRUE; } |