summaryrefslogtreecommitdiff
path: root/svl/source/items/ptitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/ptitem.cxx')
-rw-r--r--svl/source/items/ptitem.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/ptitem.cxx b/svl/source/items/ptitem.cxx
index b62b88054c69..956a20330b39 100644
--- a/svl/source/items/ptitem.cxx
+++ b/svl/source/items/ptitem.cxx
@@ -75,7 +75,7 @@ SfxItemPresentation SfxPointItem::GetPresentation
) const
{
DBG_CHKTHIS(SfxPointItem, 0);
- rText = OUString::valueOf(aVal.X()) + ", " + OUString::valueOf(aVal.Y()) + ", ";
+ rText = OUString::number(aVal.X()) + ", " + OUString::number(aVal.Y()) + ", ";
return SFX_ITEM_PRESENTATION_NAMELESS;
}