diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-06-02 20:19:28 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-06-02 20:19:28 -0500 |
commit | 65269c97c305d7d8efc42add2faf99a18731af52 (patch) | |
tree | 87e8ac81fe262371b9adf1d4888c91303f962a90 /scripting/source/provider/MasterScriptProviderFactory.cxx | |
parent | d9085f3b5f970b6c8efbf1192dd05caa02f4ba1f (diff) |
targeted string re-work
Change-Id: I37e225902bf7f3a6e007e7641b2b9898b044a45b
Diffstat (limited to 'scripting/source/provider/MasterScriptProviderFactory.cxx')
-rw-r--r-- | scripting/source/provider/MasterScriptProviderFactory.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripting/source/provider/MasterScriptProviderFactory.cxx b/scripting/source/provider/MasterScriptProviderFactory.cxx index dd0b10c26ce3..3799199d00a0 100644 --- a/scripting/source/provider/MasterScriptProviderFactory.cxx +++ b/scripting/source/provider/MasterScriptProviderFactory.cxx @@ -90,8 +90,8 @@ Sequence< ::rtl::OUString > SAL_CALL mspf_getSupportedServiceNames( ) SAL_THROW(()) { - ::rtl::OUString str_name(RTL_CONSTASCII_USTRINGPARAM( - "com.sun.star.script.provider.MasterScriptProviderFactory")); + ::rtl::OUString str_name( + "com.sun.star.script.provider.MasterScriptProviderFactory"); return Sequence< ::rtl::OUString >( &str_name, 1 ); } @@ -100,8 +100,8 @@ mspf_getSupportedServiceNames( ) mspf_getImplementationName( ) SAL_THROW(()) { - return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( - "com.sun.star.script.provider.MasterScriptProviderFactory")); + return ::rtl::OUString( + "com.sun.star.script.provider.MasterScriptProviderFactory"); } Reference< XInterface > SAL_CALL |