diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 13:33:01 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 14:12:33 +0100 |
commit | 63968bae8713a4938a97664ba7655a898730c072 (patch) | |
tree | 7f8c165976912509b7ae0a04aaf98a1d6fc53692 | |
parent | 0530bbb0756f7d0b224ab1802b07387c562f3b1b (diff) |
stoc: Use appropriate OUString functions on string constants
Change-Id: I776bbe6077b33f22657141ca875743c67b793c48
-rw-r--r-- | stoc/source/invocation/invocation.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stoc/source/invocation/invocation.cxx b/stoc/source/invocation/invocation.cxx index a928f5bd684b..da1b6a9e2182 100644 --- a/stoc/source/invocation/invocation.cxx +++ b/stoc/source/invocation/invocation.cxx @@ -593,8 +593,8 @@ void Invocation_Impl::setValue( const OUString& PropertyName, const Any& Value ) catch (const Exception & exc) { throw InvocationTargetException( - OUString( "exception occurred in setValue(): " ) + - exc.Message, Reference< XInterface >(), makeAny( exc /* though sliced */ ) ); + "exception occurred in setValue(): " + exc.Message, + Reference< XInterface >(), makeAny( exc /* though sliced */ ) ); } } } |