summaryrefslogtreecommitdiff
path: root/svl/source/items/szitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/szitem.cxx')
-rw-r--r--svl/source/items/szitem.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/szitem.cxx b/svl/source/items/szitem.cxx
index cf7249ab6603..78f1ada2059e 100644
--- a/svl/source/items/szitem.cxx
+++ b/svl/source/items/szitem.cxx
@@ -71,7 +71,7 @@ SfxItemPresentation SfxSizeItem::GetPresentation
) const
{
DBG_CHKTHIS(SfxSizeItem, 0);
- rText = OUString::valueOf(aVal.Width()) + ", " + OUString::valueOf(aVal.Height()) + ", ";
+ rText = OUString::number(aVal.Width()) + ", " + OUString::number(aVal.Height()) + ", ";
return SFX_ITEM_PRESENTATION_NAMELESS;
}