summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-07-27 13:58:56 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-07-27 14:04:29 +0200
commit49bf4745fdde38278e0cd8b8bc6288bfd3c80594 (patch)
treea6e1ea86abb63ca83d1ab0983c81b25acd858641
parentdon't need to get this one for each cell (diff)
downloadcore-49bf4745fdde38278e0cd8b8bc6288bfd3c80594.tar.gz
core-49bf4745fdde38278e0cd8b8bc6288bfd3c80594.zip
this explicit conversion is unnecessary, use the implicit one
Change-Id: I798a1cd56baa86c7ee08b5f47ec5149d8a4815de
-rw-r--r--sc/source/filter/xml/xmlwrap.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/xml/xmlwrap.cxx b/sc/source/filter/xml/xmlwrap.cxx
index 4aeb8b180700..22c4b64ae085 100644
--- a/sc/source/filter/xml/xmlwrap.cxx
+++ b/sc/source/filter/xml/xmlwrap.cxx
@@ -331,7 +331,7 @@ sal_Bool ScXMLImportWrapper::Import(sal_Bool bStylesOnly, ErrCode& nError)
xml::sax::InputSource aParserInput;
if (pMedium)
- aParserInput.sSystemId = OUString(pMedium->GetName());
+ aParserInput.sSystemId = pMedium->GetName();
if ( !xStorage.is() && pMedium )
xStorage = pMedium->GetStorage();