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.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/svl/source/items/flagitem.cxx b/svl/source/items/flagitem.cxx
index a730c5ce7445..a99a6fa04be6 100644
--- a/svl/source/items/flagitem.cxx
+++ b/svl/source/items/flagitem.cxx
@@ -35,11 +35,11 @@ sal_uInt16 nSfxFlagVal[16] =
};
-// -----------------------------------------------------------------------
+
TYPEINIT1(SfxFlagItem, SfxPoolItem);
-// -----------------------------------------------------------------------
+
SfxFlagItem::SfxFlagItem( sal_uInt16 nW, sal_uInt16 nV ) :
SfxPoolItem( nW ),
@@ -48,7 +48,7 @@ SfxFlagItem::SfxFlagItem( sal_uInt16 nW, sal_uInt16 nV ) :
DBG_CTOR(SfxFlagItem, 0);
}
-// -----------------------------------------------------------------------
+
SfxFlagItem::SfxFlagItem( const SfxFlagItem& rItem ) :
SfxPoolItem( rItem ),
@@ -57,7 +57,7 @@ SfxFlagItem::SfxFlagItem( const SfxFlagItem& rItem ) :
DBG_CTOR(SfxFlagItem, 0);
}
-// -----------------------------------------------------------------------
+
SvStream& SfxFlagItem::Store(SvStream &rStream, sal_uInt16) const
{
@@ -66,7 +66,7 @@ SvStream& SfxFlagItem::Store(SvStream &rStream, sal_uInt16) const
return rStream;
}
-// -----------------------------------------------------------------------
+
SfxItemPresentation SfxFlagItem::GetPresentation
(
@@ -84,7 +84,7 @@ SfxItemPresentation SfxFlagItem::GetPresentation
return SFX_ITEM_PRESENTATION_NAMELESS;
}
-// -----------------------------------------------------------------------
+
sal_uInt8 SfxFlagItem::GetFlagCount() const
{
@@ -93,7 +93,7 @@ sal_uInt8 SfxFlagItem::GetFlagCount() const
return 0;
}
-// -----------------------------------------------------------------------
+
SfxPoolItem* SfxFlagItem::Create(SvStream &, sal_uInt16) const
{
@@ -102,7 +102,7 @@ SfxPoolItem* SfxFlagItem::Create(SvStream &, sal_uInt16) const
return 0;
}
-// -----------------------------------------------------------------------
+
bool SfxFlagItem::operator==( const SfxPoolItem& rItem ) const
{
@@ -111,7 +111,7 @@ bool SfxFlagItem::operator==( const SfxPoolItem& rItem ) const
return (((SfxFlagItem&)rItem).nVal == nVal);
}
-// -----------------------------------------------------------------------
+
SfxPoolItem* SfxFlagItem::Clone(SfxItemPool *) const