From c31d3ed99cc2346663877a751ffea64270ed412f Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 9 Sep 2013 01:52:09 +0300 Subject: One more case of explicit OUString construction needed for return statement Change-Id: I577aa609179cdb83124b004ff9ef5aa2123e1e5b --- framework/source/xml/acceleratorconfigurationreader.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'framework') diff --git a/framework/source/xml/acceleratorconfigurationreader.cxx b/framework/source/xml/acceleratorconfigurationreader.cxx index 478f1b327b1c..b9191d286807 100644 --- a/framework/source/xml/acceleratorconfigurationreader.cxx +++ b/framework/source/xml/acceleratorconfigurationreader.cxx @@ -286,7 +286,7 @@ AcceleratorConfigurationReader::EXMLAttribute AcceleratorConfigurationReader::im OUString AcceleratorConfigurationReader::implts_getErrorLineString() { if (!m_xLocator.is()) - return "Error during parsing XML. (No further info available ...)"; + return OUString("Error during parsing XML. (No further info available ...)"); OUStringBuffer sMsg(256); sMsg.appendAscii("Error during parsing XML in\nline = "); -- cgit