diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-09-09 01:52:09 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-09-09 01:52:09 +0300 |
commit | c31d3ed99cc2346663877a751ffea64270ed412f (patch) | |
tree | 9d4b2a6e6589dbcced44bad5ce43890663cd887c /framework/source/xml | |
parent | 2f750d86cf77835d325e04467180a506411e2889 (diff) |
One more case of explicit OUString construction needed for return statement
Change-Id: I577aa609179cdb83124b004ff9ef5aa2123e1e5b
Diffstat (limited to 'framework/source/xml')
-rw-r--r-- | framework/source/xml/acceleratorconfigurationreader.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 = "); |