diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-14 13:13:19 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-19 10:29:30 +0200 |
commit | 2c35fff7eca3a143d28dc75e6a73fe1101d2af77 (patch) | |
tree | fb31b64880b06b0e2bd867aa6216ae0259c7c091 /salhelper | |
parent | ccc297097891e62489e5d281a4ea128ec6b71361 (diff) |
remove most use of RTL_CONSTASCII_USTRINGPARAM macro
This is largely unnecessary when working with OUString
Change-Id: I3cf4d68357a43665d01162ef4a2d5346a45da9be
Diffstat (limited to 'salhelper')
-rw-r--r-- | salhelper/test/Symbols/loader.cxx | 4 | ||||
-rw-r--r-- | salhelper/test/dynamicloader/loader.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/salhelper/test/Symbols/loader.cxx b/salhelper/test/Symbols/loader.cxx index 1651d12fb0ad..968cdc3e85c6 100644 --- a/salhelper/test/Symbols/loader.cxx +++ b/salhelper/test/Symbols/loader.cxx @@ -33,8 +33,8 @@ class SampleLibLoader public: SampleLibLoader(): ::salhelper::ODynamicLoader<SampleLib_Api> - (::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( SAL_MODULENAME( "samplelib") ) ), - ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(SAMPLELIB_INIT_FUNCTION_NAME) )) + (::rtl::OUString( SAL_MODULENAME( "samplelib") ), + ::rtl::OUString( SAMPLELIB_INIT_FUNCTION_NAME )) {} }; diff --git a/salhelper/test/dynamicloader/loader.cxx b/salhelper/test/dynamicloader/loader.cxx index 106b489b8d4d..daee3862b571 100644 --- a/salhelper/test/dynamicloader/loader.cxx +++ b/salhelper/test/dynamicloader/loader.cxx @@ -34,8 +34,8 @@ class SampleLibLoader public: SampleLibLoader(): ::salhelper::ODynamicLoader<SampleLib_Api> - (::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( SAL_MODULENAME( "samplelib") ) ), - ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(SAMPLELIB_INIT_FUNCTION_NAME) )) + (::rtl::OUString( SAL_MODULENAME( "samplelib") ), + ::rtl::OUString( SAMPLELIB_INIT_FUNCTION_NAME) ) {} }; |