summaryrefslogtreecommitdiffstats
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 e17980f55baa..0e9990fbac06 100644
--- a/xmloff/source/draw/descriptionimp.cxx
+++ b/xmloff/source/draw/descriptionimp.cxx
@@ -49,11 +49,11 @@ void SdXMLDescriptionContext::endFastElement(sal_Int32 )
uno::Reference< beans::XPropertySet > xPropSet(mxShape, uno::UNO_QUERY_THROW);
if( (mnElement & TOKEN_MASK) == XML_TITLE)
{
- xPropSet->setPropertyValue("Title", Any(msText));
+ xPropSet->setPropertyValue(u"Title"_ustr, Any(msText));
}
else
{
- xPropSet->setPropertyValue("Description", Any(msText));
+ xPropSet->setPropertyValue(u"Description"_ustr, Any(msText));
}
}
catch( uno::Exception& )