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.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/svl/source/items/flagitem.cxx b/svl/source/items/flagitem.cxx
index 905555dcdd54..c5934897b9a2 100644
--- a/svl/source/items/flagitem.cxx
+++ b/svl/source/items/flagitem.cxx
@@ -23,8 +23,6 @@
#include <tools/stream.hxx>
-
-
SfxFlagItem::SfxFlagItem( sal_uInt16 nW, sal_uInt16 nV ) :
SfxPoolItem( nW ),
nVal(nV)
@@ -32,7 +30,6 @@ SfxFlagItem::SfxFlagItem( sal_uInt16 nW, sal_uInt16 nV ) :
}
-
SfxFlagItem::SfxFlagItem( const SfxFlagItem& rItem ) :
SfxPoolItem( rItem ),
nVal( rItem.nVal )
@@ -40,7 +37,6 @@ SfxFlagItem::SfxFlagItem( const SfxFlagItem& rItem ) :
}
-
SvStream& SfxFlagItem::Store(SvStream &rStream, sal_uInt16) const
{
rStream.WriteUInt16( nVal );
@@ -48,7 +44,6 @@ SvStream& SfxFlagItem::Store(SvStream &rStream, sal_uInt16) const
}
-
bool SfxFlagItem::GetPresentation
(
SfxItemPresentation /*ePresentation*/,
@@ -65,7 +60,6 @@ bool SfxFlagItem::GetPresentation
}
-
sal_uInt8 SfxFlagItem::GetFlagCount() const
{
SAL_INFO("svl", "calling GetValueText(sal_uInt16) on SfxFlagItem -- override!");
@@ -73,7 +67,6 @@ sal_uInt8 SfxFlagItem::GetFlagCount() const
}
-
SfxPoolItem* SfxFlagItem::Create(SvStream &, sal_uInt16) const
{
SAL_INFO("svl", "calling Create() on SfxFlagItem -- override!");
@@ -81,7 +74,6 @@ SfxPoolItem* SfxFlagItem::Create(SvStream &, sal_uInt16) const
}
-
bool SfxFlagItem::operator==( const SfxPoolItem& rItem ) const
{
DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" );
@@ -89,15 +81,10 @@ bool SfxFlagItem::operator==( const SfxPoolItem& rItem ) const
}
-
-
SfxPoolItem* SfxFlagItem::Clone(SfxItemPool *) const
{
return new SfxFlagItem( *this );
}
-
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */