summaryrefslogtreecommitdiff
path: root/svl/source/items/dateitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/dateitem.cxx')
-rw-r--r--svl/source/items/dateitem.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/svl/source/items/dateitem.cxx b/svl/source/items/dateitem.cxx
index dc7478d5e506..5dc90ada2fbd 100644
--- a/svl/source/items/dateitem.cxx
+++ b/svl/source/items/dateitem.cxx
@@ -122,7 +122,7 @@ SfxItemPresentation SfxDateTimeItem::GetPresentation
SfxItemPresentation /*ePresentation*/,
SfxMapUnit /*eCoreMetric*/,
SfxMapUnit /*ePresentationMetric*/,
- XubString& rText,
+ OUString& rText,
const IntlWrapper * pIntlWrapper
) const
{
@@ -130,21 +130,21 @@ SfxItemPresentation SfxDateTimeItem::GetPresentation
if (aDateTime.IsValidDate())
if (pIntlWrapper)
{
- rText = pIntlWrapper->getLocaleData()->getDate(aDateTime);
- rText.AppendAscii(RTL_CONSTASCII_STRINGPARAM(", "));
- rText += pIntlWrapper->getLocaleData()->getTime(aDateTime);
+ rText = pIntlWrapper->getLocaleData()->getDate(aDateTime) +
+ ", " +
+ pIntlWrapper->getLocaleData()->getTime(aDateTime);
}
else
{
DBG_WARNING("SfxDateTimeItem::GetPresentation():"
" Using default en_US IntlWrapper");
const IntlWrapper aIntlWrapper( LanguageTag( LANGUAGE_ENGLISH_US) );
- rText = aIntlWrapper.getLocaleData()->getDate(aDateTime);
- rText.AppendAscii(RTL_CONSTASCII_STRINGPARAM(", "));
- rText += aIntlWrapper.getLocaleData()->getTime(aDateTime);
+ rText = aIntlWrapper.getLocaleData()->getDate(aDateTime) +
+ ", " +
+ aIntlWrapper.getLocaleData()->getTime(aDateTime);
}
else
- rText.Erase();
+ rText = OUString();
return SFX_ITEM_PRESENTATION_NAMELESS;
}