summaryrefslogtreecommitdiff
path: root/reportdesign/source/filter/xml/dbloader2.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'reportdesign/source/filter/xml/dbloader2.cxx')
-rw-r--r--reportdesign/source/filter/xml/dbloader2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/reportdesign/source/filter/xml/dbloader2.cxx b/reportdesign/source/filter/xml/dbloader2.cxx
index dd4820b2f63b..477fa617daeb 100644
--- a/reportdesign/source/filter/xml/dbloader2.cxx
+++ b/reportdesign/source/filter/xml/dbloader2.cxx
@@ -49,7 +49,7 @@ OUString SAL_CALL ORptTypeDetection::detect( Sequence< ::com::sun::star::beans::
{
::comphelper::SequenceAsHashMap aTemp(Descriptor);
- OUString sTemp = aTemp.getUnpackedValueOrDefault(OUString("URL"),OUString());
+ OUString sTemp = aTemp.getUnpackedValueOrDefault("URL",OUString());
if ( !sTemp.isEmpty() )
{
@@ -64,7 +64,7 @@ OUString SAL_CALL ORptTypeDetection::detect( Sequence< ::com::sun::star::beans::
if ( xProp.is() )
{
OUString sMediaType;
- xProp->getPropertyValue( OUString("MediaType") ) >>= sMediaType;
+ xProp->getPropertyValue("MediaType") >>= sMediaType;
if ( sMediaType == MIMETYPE_OASIS_OPENDOCUMENT_REPORT_ASCII )
return OUString("StarBaseReport");
::comphelper::disposeComponent(xProp);