summaryrefslogtreecommitdiff
path: root/svtools/source/misc
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-11-25 21:39:00 +0100
committerGert Faller <gertfaller@aliceadsl.fr>2010-11-25 21:39:00 +0100
commit41f8880d52735a052ab5359981b4b187627a4bdc (patch)
treec7878df45da5b08006e789b1f46f411327bb2850 /svtools/source/misc
parent261b50b8826153d36054df889c74a0f805848247 (diff)
RTL_CONSTASCII_USTRINGPARAM in libs-gui 18
Diffstat (limited to 'svtools/source/misc')
-rw-r--r--svtools/source/misc/svtaccessiblefactory.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/misc/svtaccessiblefactory.cxx b/svtools/source/misc/svtaccessiblefactory.cxx
index fa2dd88e5591..b63d1084e045 100644
--- a/svtools/source/misc/svtaccessiblefactory.cxx
+++ b/svtools/source/misc/svtaccessiblefactory.cxx
@@ -284,9 +284,9 @@ namespace svt
// load the library implementing the factory
if ( !s_pFactory.get() )
{
- const ::rtl::OUString sModuleName = ::rtl::OUString::createFromAscii(
+ const ::rtl::OUString sModuleName(RTL_CONSTASCII_USTRINGPARAM(
SVLIBRARY( "acc" )
- );
+ ));
s_hAccessibleImplementationModule = osl_loadModuleRelative( &thisModule, sModuleName.pData, 0 );
if ( s_hAccessibleImplementationModule != NULL )
{