summaryrefslogtreecommitdiff
path: root/cppu/source/uno/loadmodule.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cppu/source/uno/loadmodule.cxx')
-rw-r--r--cppu/source/uno/loadmodule.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppu/source/uno/loadmodule.cxx b/cppu/source/uno/loadmodule.cxx
index 9271a89e9e90..f00936d328d2 100644
--- a/cppu/source/uno/loadmodule.cxx
+++ b/cppu/source/uno/loadmodule.cxx
@@ -34,10 +34,10 @@ namespace cppu { namespace detail {
::oslModule loadModule(rtl::OUString const & name) {
rtl::OUStringBuffer b;
#if defined SAL_DLLPREFIX
- b.appendAscii(RTL_CONSTASCII_STRINGPARAM(SAL_DLLPREFIX));
+ b.append(SAL_DLLPREFIX);
#endif
b.append(name);
- b.appendAscii(RTL_CONSTASCII_STRINGPARAM(SAL_DLLEXTENSION));
+ b.append(SAL_DLLEXTENSION);
return ::osl_loadModuleRelative(
reinterpret_cast< oslGenericFunction >(&loadModule),
b.makeStringAndClear().pData,