summaryrefslogtreecommitdiff
path: root/svl/source/items/flagitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/flagitem.cxx')
-rw-r--r--svl/source/items/flagitem.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/flagitem.cxx b/svl/source/items/flagitem.cxx
index c0c85af1772f..b7ac57498db2 100644
--- a/svl/source/items/flagitem.cxx
+++ b/svl/source/items/flagitem.cxx
@@ -50,7 +50,7 @@ SvStream& SfxFlagItem::Store(SvStream &rStream, sal_uInt16) const
-SfxItemPresentation SfxFlagItem::GetPresentation
+bool SfxFlagItem::GetPresentation
(
SfxItemPresentation /*ePresentation*/,
SfxMapUnit /*eCoreMetric*/,
@@ -62,7 +62,7 @@ SfxItemPresentation SfxFlagItem::GetPresentation
rText = OUString();
for ( sal_uInt8 nFlag = 0; nFlag < GetFlagCount(); ++nFlag )
rText += GetFlag(nFlag) ? OUString("true") : OUString("false");
- return SFX_ITEM_PRESENTATION_NAMELESS;
+ return true;
}