summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/xmlwrap.cxx
diff options
context:
space:
mode:
authorJean-Noël Rouvignac <jn.rouvignac@gmail.com>2013-02-24 16:08:05 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-02-26 15:51:23 +0000
commit465dbaecf9890b7117a45d02ea982ef7aca32720 (patch)
tree69b31b155bc17799d260aa9addd4fb855757a42d /sc/source/filter/xml/xmlwrap.cxx
parent73b50b73366f069b2ba680cec35b09d566209109 (diff)
fdo#38838 Replaced some use of (Xub)String with OUString.
Change-Id: I5a8f2d1a5762c20d21d31b04778a9e2cac8df9cb Reviewed-on: https://gerrit.libreoffice.org/2364 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'sc/source/filter/xml/xmlwrap.cxx')
-rw-r--r--sc/source/filter/xml/xmlwrap.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/xml/xmlwrap.cxx b/sc/source/filter/xml/xmlwrap.cxx
index 8c44c5a0ddc6..281fa8670050 100644
--- a/sc/source/filter/xml/xmlwrap.cxx
+++ b/sc/source/filter/xml/xmlwrap.cxx
@@ -213,9 +213,9 @@ sal_uInt32 ScXMLImportWrapper::ImportFromComponent(uno::Reference<lang::XMultiSe
OSL_FAIL(aError.getStr());
#endif
- String sErr( OUString::number( r.LineNumber ));
- sErr += ',';
- sErr += OUString::number( r.ColumnNumber );
+ String sErr = OUString::number( r.LineNumber ) +
+ "," +
+ OUString::number( r.ColumnNumber );
if( !sDocName.isEmpty() )
{