diff options
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx index 753f814a3367..cd292c7db8b0 100644 --- a/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx +++ b/bridges/source/cpp_uno/msvc_win32_x86-64/except.cxx @@ -879,15 +879,12 @@ int mscx_filterCppException( &pExcTD, aUNOname.pData ); if (pExcTD == nullptr) { - OUStringBuffer buf; - buf.append( - "[mscx_uno bridge error] UNO type of " - "C++ exception unknown: \"" ); - buf.append( aUNOname ); - buf.append( "\", RTTI-name=\"" ); - buf.append( aRTTIname ); - buf.append( "\"!" ); - RuntimeException exc( buf.makeStringAndClear() ); + OUString sMsg = "[mscx_uno bridge error] UNO type of " + "C++ exception unknown: \"" + + aUNOname + "\", RTTI-name=\"" + + aRTTIname + "\"!"; + + RuntimeException exc( sMsg ); uno_type_any_constructAndConvert( pUnoExc, &exc, cppu::UnoType<decltype(exc)>::get().getTypeLibType(), pCpp2Uno ); |