diff options
author | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-27 11:54:21 +0100 |
---|---|---|
committer | Gert Faller <gertfaller@aliceadsl.fr> | 2010-11-27 11:54:21 +0100 |
commit | 48e0a0c286d9264e79573f7417ac268ae629ef1d (patch) | |
tree | c8046572378fc71a4bf3f42a82de42152eab7600 /extensions/source/plugin/base/plmodel.cxx | |
parent | 5a64624a0af3a2a4f437f08ebe41a215d70dee4b (diff) |
RTL_CONSTASCII_USTRINGPARAM in components 1
Diffstat (limited to 'extensions/source/plugin/base/plmodel.cxx')
-rw-r--r-- | extensions/source/plugin/base/plmodel.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/plugin/base/plmodel.cxx b/extensions/source/plugin/base/plmodel.cxx index 5a7164720..d09bd7c14 100644 --- a/extensions/source/plugin/base/plmodel.cxx +++ b/extensions/source/plugin/base/plmodel.cxx @@ -58,7 +58,7 @@ Any PluginModel::queryAggregation( const Type& type ) throw( RuntimeException ) Sequence< ::rtl::OUString > PluginModel::getSupportedServiceNames_Static(void) throw() { Sequence< ::rtl::OUString > aSNS( 1 ); - aSNS.getArray()[0] = ::rtl::OUString::createFromAscii( "com.sun.star.plugin.PluginModel" ); + aSNS.getArray()[0] = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.plugin.PluginModel")); return aSNS; } @@ -190,7 +190,7 @@ void PluginModel::dispose(void) throw() // ::com::sun::star::io::XPersistObject ::rtl::OUString PluginModel::getServiceName() throw() { - return ::rtl::OUString::createFromAscii( "com.sun.star.plugin.PluginModel" ); + return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.plugin.PluginModel")); } void PluginModel::write(const Reference< ::com::sun::star::io::XObjectOutputStream > & OutStream) throw() |