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.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/ptitem.cxx b/svl/source/items/ptitem.cxx
index c9c36e26a51e..87940444d863 100644
--- a/svl/source/items/ptitem.cxx
+++ b/svl/source/items/ptitem.cxx
@@ -55,7 +55,7 @@ SfxPointItem::SfxPointItem( const SfxPointItem& rItem ) :
-SfxItemPresentation SfxPointItem::GetPresentation
+bool SfxPointItem::GetPresentation
(
SfxItemPresentation /*ePresentation*/,
SfxMapUnit /*eCoreMetric*/,
@@ -65,7 +65,7 @@ SfxItemPresentation SfxPointItem::GetPresentation
) const
{
rText = OUString::number(aVal.X()) + ", " + OUString::number(aVal.Y()) + ", ";
- return SFX_ITEM_PRESENTATION_NAMELESS;
+ return true;
}