summaryrefslogtreecommitdiff
path: root/svl/source/items/cintitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/cintitem.cxx')
-rw-r--r--svl/source/items/cintitem.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/svl/source/items/cintitem.cxx b/svl/source/items/cintitem.cxx
index f90acae6d388..e1291e26480b 100644
--- a/svl/source/items/cintitem.cxx
+++ b/svl/source/items/cintitem.cxx
@@ -43,13 +43,13 @@ int CntByteItem::Compare(const SfxPoolItem & rWith) const
}
// virtual
-SfxItemPresentation CntByteItem::GetPresentation(SfxItemPresentation,
+bool CntByteItem::GetPresentation(SfxItemPresentation,
SfxMapUnit, SfxMapUnit,
OUString & rText,
const IntlWrapper *) const
{
rText = OUString::number( m_nValue );
- return SFX_ITEM_PRESENTATION_NAMELESS;
+ return true;
}
// virtual
@@ -146,14 +146,14 @@ int CntUInt16Item::Compare(const SfxPoolItem & rWith) const
}
// virtual
-SfxItemPresentation CntUInt16Item::GetPresentation(SfxItemPresentation,
+bool CntUInt16Item::GetPresentation(SfxItemPresentation,
SfxMapUnit, SfxMapUnit,
OUString & rText,
const IntlWrapper *)
const
{
rText = OUString::number( m_nValue );
- return SFX_ITEM_PRESENTATION_NAMELESS;
+ return true;
}
// virtual
@@ -248,13 +248,13 @@ int CntInt32Item::Compare(const SfxPoolItem & rWith) const
}
// virtual
-SfxItemPresentation CntInt32Item::GetPresentation(SfxItemPresentation,
+bool CntInt32Item::GetPresentation(SfxItemPresentation,
SfxMapUnit, SfxMapUnit,
OUString & rText,
const IntlWrapper *) const
{
rText = OUString::number( m_nValue );
- return SFX_ITEM_PRESENTATION_NAMELESS;
+ return true;
}
// virtual
@@ -350,14 +350,14 @@ int CntUInt32Item::Compare(const SfxPoolItem & rWith) const
}
// virtual
-SfxItemPresentation CntUInt32Item::GetPresentation(SfxItemPresentation,
+bool CntUInt32Item::GetPresentation(SfxItemPresentation,
SfxMapUnit, SfxMapUnit,
OUString & rText,
const IntlWrapper *)
const
{
rText = OUString::number(m_nValue);
- return SFX_ITEM_PRESENTATION_NAMELESS;
+ return true;
}
// virtual