diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2010-12-15 07:48:23 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2010-12-15 07:48:23 +0100 |
commit | f4f8701d70ece09888c93d74a554b6ed11c8f4e4 (patch) | |
tree | 42f653f0ed0de1b26118bcb598e751e012929c3d /extensions | |
parent | 8184a1310420e9d99bae389f28e1284e4447ae7f (diff) |
RTL_CONSTASCII_USTRINGPARAM in extensions
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/plugin/inc/plugin/impl.hxx | 2 | ||||
-rw-r--r-- | extensions/source/plugin/inc/plugin/model.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/plugin/inc/plugin/impl.hxx b/extensions/source/plugin/inc/plugin/impl.hxx index a11460eb384f..cad61129d875 100644 --- a/extensions/source/plugin/inc/plugin/impl.hxx +++ b/extensions/source/plugin/inc/plugin/impl.hxx @@ -308,7 +308,7 @@ public: static rtl::OUString getImplementationName_Static() throw( ) { /** the soplayer uses this name in its source! maybe not after 5.2 */ - return rtl::OUString::createFromAscii( "com.sun.star.extensions.PluginManager" ); + return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.extensions.PluginManager" )); } }; Reference< XInterface > SAL_CALL PluginManager_CreateInstance( const Reference< com::sun::star::lang::XMultiServiceFactory > & ) throw( Exception ); diff --git a/extensions/source/plugin/inc/plugin/model.hxx b/extensions/source/plugin/inc/plugin/model.hxx index 8832b8ed1f75..f0acad737e14 100644 --- a/extensions/source/plugin/inc/plugin/model.hxx +++ b/extensions/source/plugin/inc/plugin/model.hxx @@ -105,7 +105,7 @@ class PluginModel : public BroadcasterHelperHolder, static rtl::OUString SAL_CALL getImplementationName_Static() throw( ) { /** the soplayer uses this name in its source! maybe not after 5.2 */ - return rtl::OUString::createFromAscii( "com.sun.star.extensions.PluginModel" ); + return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.extensions.PluginModel" )); } // OPropertySetHelper |