diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-07-15 20:46:29 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-07-15 23:12:35 +0200 |
commit | ba37e4062f538db7e51d6a64ba544eeddbc567cf (patch) | |
tree | 89e39cb6a24fc83090e34b69efd1c0c6b208a049 /sax/source | |
parent | 9d65113efeff9b82acddf531d341ecb0e56447a9 (diff) |
OUStringBuffer doesn't have append() overload for const char*
Change-Id: Ibde8e2021d33f01f91486fb6d3e24e7af0a47744
Diffstat (limited to 'sax/source')
-rw-r--r-- | sax/source/fastparser/fastparser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx index 71dc0937cdf1..34779968fd4b 100644 --- a/sax/source/fastparser/fastparser.cxx +++ b/sax/source/fastparser/fastparser.cxx @@ -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(); } |