[Libreoffice-commits] .: extensions/source
David Tardon
dtardon at kemper.freedesktop.org
Tue Dec 14 22:48:30 PST 2010
extensions/source/plugin/inc/plugin/impl.hxx | 2 +-
extensions/source/plugin/inc/plugin/model.hxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 3652a062811dcfb6562329cd6404c6629ef7e983
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Wed Dec 15 07:48:23 2010 +0100
RTL_CONSTASCII_USTRINGPARAM in extensions
diff --git a/extensions/source/plugin/inc/plugin/impl.hxx b/extensions/source/plugin/inc/plugin/impl.hxx
index 99bedc5..9f6778d 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 91dfea0..5937a8d 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
More information about the Libreoffice-commits
mailing list