summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-07-27 13:58:56 +0200
committerDavid Ostrovsky <david@ostrovsky.org>2012-07-27 17:20:00 +0200
commitb177b3e20270a83bef69fa0ad714cd5dbfa439f8 (patch)
tree4cffe5be488eefd9b47f1c654ed195b3d3760d54
parent645c44dcc812a688395b4fb10c8e605cc354dbb6 (diff)
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();