summaryrefslogtreecommitdiff
path: root/vcl/source/app/unohelp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/app/unohelp.cxx')
-rw-r--r--vcl/source/app/unohelp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/app/unohelp.cxx b/vcl/source/app/unohelp.cxx
index 3b15d25bd521..e5187c1d1dcc 100644
--- a/vcl/source/app/unohelp.cxx
+++ b/vcl/source/app/unohelp.cxx
@@ -45,7 +45,7 @@ uno::Reference < i18n::XCharacterClassification > vcl::unohelper::CreateCharacte
return i18n::CharacterClassification::create( comphelper::getProcessComponentContext() );
}
-::rtl::OUString vcl::unohelper::CreateLibraryName( const sal_Char* pModName, sal_Bool bSUPD )
+OUString vcl::unohelper::CreateLibraryName( const sal_Char* pModName, sal_Bool bSUPD )
{
// create variable library name suffixes
OUString aDLLSuffix = OUString::createFromAscii( SAL_STRINGIFY( DLLPOSTFIX ) );
@@ -58,7 +58,7 @@ uno::Reference < i18n::XCharacterClassification > vcl::unohelper::CreateCharacte
{
aLibName += aDLLSuffix;
}
- aLibName += rtl::OUString( ".dll" );
+ aLibName += OUString( ".dll" );
#else
aLibName = OUString( "lib" );
aLibName += OUString::createFromAscii( pModName );