diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-06-02 16:59:01 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-06-02 17:57:16 -0500 |
commit | ea489b3570efe7d9a53da91ba66fa1563d40ffbb (patch) | |
tree | a0beebdb8b4e96f00a2e6c64a3b1a1174d550d2d /odk | |
parent | 13aaac50bc5c37d4d9be97b441032dd7d6d02406 (diff) |
targeted string re-work
Change-Id: Ia2115e70df8f64eb0dade6beb33ee64c358af767
Diffstat (limited to 'odk')
-rw-r--r-- | odk/examples/cpp/complextoolbarcontrols/exports.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/odk/examples/cpp/complextoolbarcontrols/exports.cxx b/odk/examples/cpp/complextoolbarcontrols/exports.cxx index 3a576b2e4c7c..763d6950be76 100644 --- a/odk/examples/cpp/complextoolbarcontrols/exports.cxx +++ b/odk/examples/cpp/complextoolbarcontrols/exports.cxx @@ -70,14 +70,14 @@ SAL_DLLPUBLIC_EXPORT void* SAL_CALL component_getFactory(const sal_Char* pImplNa if (sImplName.equalsAscii(MYLISTENER_IMPLEMENTATIONNAME)) { css::uno::Sequence< ::rtl::OUString > lNames(1); - lNames[0] = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(MYLISTENER_IMPLEMENTATIONNAME)); + lNames[0] = ::rtl::OUString(MYLISTENER_IMPLEMENTATIONNAME); xFactory = ::cppu::createSingleFactory(xSMGR, sImplName, MyListener::st_createInstance, lNames); } else if (sImplName.equalsAscii(MYPROTOCOLHANDLER_IMPLEMENTATIONNAME)) { css::uno::Sequence< ::rtl::OUString > lNames(1); - lNames[0] = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(MYPROTOCOLHANDLER_SERVICENAME)); + lNames[0] = ::rtl::OUString(MYPROTOCOLHANDLER_SERVICENAME); xFactory = ::cppu::createSingleFactory(xSMGR, sImplName, MyProtocolHandler_createInstance, lNames); } |