From 5bb4a2ba1d8a6b98720868786e552aa8fd2a22eb Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Tue, 19 Mar 2013 14:16:55 +0100 Subject: further OUString cleanup Change-Id: I19954ee5976cb881a5fe73a889c8e04a19b14eb6 --- sax/source/expatwrap/sax_expat.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sax/source') diff --git a/sax/source/expatwrap/sax_expat.cxx b/sax/source/expatwrap/sax_expat.cxx index b210c2edcd05..72b84e2ffae0 100644 --- a/sax/source/expatwrap/sax_expat.cxx +++ b/sax/source/expatwrap/sax_expat.cxx @@ -730,11 +730,11 @@ OUString getErrorMessage( XML_Error xmlE, OUString sSystemId , sal_Int32 nLine ) OUString str("["); str += sSystemId; - str += OUString(" line "); + str += " line "; str += OUString::valueOf( nLine ); - str += OUString("]: "); + str += "]: "; str += Message; - str += OUString("error"); + str += "error"; return str; } -- cgit