diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-06-02 22:57:59 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-06-02 22:57:59 -0500 |
commit | aa062d1b735f3ebef00fe64c74240240d3912722 (patch) | |
tree | be8e44e1a702556b0bcf947f5a57330af8feb3a8 /embeddedobj/test/MainThreadExecutor | |
parent | d8e3eb234b729e9b3d9b8d81abd27f228fd06687 (diff) |
targeted string re-work
Change-Id: I2b2bc81099a7da2300e73fff91d104cc0b6ed2f5
Diffstat (limited to 'embeddedobj/test/MainThreadExecutor')
-rw-r--r-- | embeddedobj/test/MainThreadExecutor/xexecutor.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embeddedobj/test/MainThreadExecutor/xexecutor.cxx b/embeddedobj/test/MainThreadExecutor/xexecutor.cxx index 06cd02a3e1a1..65e699b7d5e2 100644 --- a/embeddedobj/test/MainThreadExecutor/xexecutor.cxx +++ b/embeddedobj/test/MainThreadExecutor/xexecutor.cxx @@ -94,14 +94,14 @@ uno::Any SAL_CALL UNOMainThreadExecutor::execute( const uno::Sequence< beans::Na uno::Sequence< ::rtl::OUString > SAL_CALL UNOMainThreadExecutor::impl_staticGetSupportedServiceNames() { uno::Sequence< ::rtl::OUString > aRet(1); - aRet[0] = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.comp.thread.MainThreadExecutor")); + aRet[0] = ::rtl::OUString("com.sun.star.comp.thread.MainThreadExecutor"); return aRet; } //------------------------------------------------------------------------- ::rtl::OUString SAL_CALL UNOMainThreadExecutor::impl_staticGetImplementationName() { - return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.comp.thread.MainThreadExecutor")); + return ::rtl::OUString("com.sun.star.comp.thread.MainThreadExecutor"); } //------------------------------------------------------------------------- |