summaryrefslogtreecommitdiff
path: root/svl/source/items/poolitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/poolitem.cxx')
-rw-r--r--svl/source/items/poolitem.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svl/source/items/poolitem.cxx b/svl/source/items/poolitem.cxx
index ed1bc59d19d4..3ac1e7bebfc3 100644
--- a/svl/source/items/poolitem.cxx
+++ b/svl/source/items/poolitem.cxx
@@ -209,7 +209,7 @@ SfxItemPresentation SfxPoolItem::GetPresentation
SfxItemPresentation /*ePresentation*/, // IN: wie formatiert werden soll
SfxMapUnit /*eCoreMetric*/, // IN: Ma\seinheit des SfxPoolItems
SfxMapUnit /*ePresentationMetric*/, // IN: Wunsch-Ma\einheit der Darstellung
- XubString& /*rText*/, // OUT: textuelle Darstellung
+ OUString& /*rText*/, // OUT: textuelle Darstellung
const IntlWrapper *
) const
@@ -294,12 +294,12 @@ SfxItemPresentation SfxVoidItem::GetPresentation
SfxItemPresentation /*ePresentation*/,
SfxMapUnit /*eCoreMetric*/,
SfxMapUnit /*ePresentationMetric*/,
- XubString& rText,
+ OUString& rText,
const IntlWrapper *
) const
{
DBG_CHKTHIS(SfxVoidItem, 0);
- rText.AssignAscii(RTL_CONSTASCII_STRINGPARAM("Void"));
+ rText = "Void";
return SFX_ITEM_PRESENTATION_NAMELESS;
}