Kaydet (Commit) 86738479 authored tarafından Omer Fatih Celik's avatar Omer Fatih Celik Kaydeden (comit) Noel Grandin

tdf#112689: Replace changed O(U)StringBuffer::append() with operator+

Change-Id: I9221608db417217dd7c97c0300ecedb67fa74132
Reviewed-on: https://gerrit.libreoffice.org/67603
Tested-by: Jenkins
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 3e214676
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment