summaryrefslogtreecommitdiff
path: root/svl/source/items/rectitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/rectitem.cxx')
-rw-r--r--svl/source/items/rectitem.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/rectitem.cxx b/svl/source/items/rectitem.cxx
index 2b43a61738d3..0441fd907608 100644
--- a/svl/source/items/rectitem.cxx
+++ b/svl/source/items/rectitem.cxx
@@ -52,7 +52,7 @@ SfxRectangleItem::SfxRectangleItem( const SfxRectangleItem& rItem ) :
-SfxItemPresentation SfxRectangleItem::GetPresentation
+bool SfxRectangleItem::GetPresentation
(
SfxItemPresentation /*ePresentation*/,
SfxMapUnit /*eCoreMetric*/,
@@ -65,7 +65,7 @@ SfxItemPresentation SfxRectangleItem::GetPresentation
OUString::number(aVal.Left()) + ", " +
OUString::number(aVal.Bottom()) + ", " +
OUString::number(aVal.Right());
- return SFX_ITEM_PRESENTATION_NAMELESS;
+ return true;
}