Kaydet (Commit) ba37e406 authored tarafından Luboš Luňák's avatar Luboš Luňák

OUStringBuffer doesn't have append() overload for const char*

Change-Id: Ibde8e2021d33f01f91486fb6d3e24e7af0a47744
üst 9d65113e
......@@ -631,7 +631,7 @@ OUString lclGetErrorMessage( XML_Error xmlE, const OUString& sSystemId, sal_Int3
aBuffer.append( " line " );
aBuffer.append( nLine );
aBuffer.append( "]: " );
aBuffer.append( pMessage );
aBuffer.appendAscii( pMessage );
aBuffer.append( " error" );
return aBuffer.makeStringAndClear();
}
......
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