summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/descriptionimp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/draw/descriptionimp.cxx')
-rw-r--r--xmloff/source/draw/descriptionimp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/draw/descriptionimp.cxx b/xmloff/source/draw/descriptionimp.cxx
index 3d1417af3ca7..265918c6187d 100644
--- a/xmloff/source/draw/descriptionimp.cxx
+++ b/xmloff/source/draw/descriptionimp.cxx
@@ -59,11 +59,11 @@ void SdXMLDescriptionContext::EndElement()
uno::Reference< beans::XPropertySet > xPropSet(mxShape, uno::UNO_QUERY_THROW);
if(IsXMLToken(GetLocalName(),XML_TITLE))
{
- xPropSet->setPropertyValue(OUString("Title"), Any(msText));
+ xPropSet->setPropertyValue("Title", Any(msText));
}
else
{
- xPropSet->setPropertyValue(OUString("Description"), Any(msText));
+ xPropSet->setPropertyValue("Description", Any(msText));
}
}
catch( uno::Exception& )