summaryrefslogtreecommitdiff
path: root/svl/source/items/rngitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/rngitem.cxx')
-rw-r--r--svl/source/items/rngitem.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/svl/source/items/rngitem.cxx b/svl/source/items/rngitem.cxx
index a1205894aee1..6fcd15738c21 100644
--- a/svl/source/items/rngitem.cxx
+++ b/svl/source/items/rngitem.cxx
@@ -31,8 +31,6 @@ static inline sal_uInt16 Count_Impl(const sal_uInt16 * pRanges)
}
-
-
SfxRangeItem::SfxRangeItem()
{
nFrom = 0;
@@ -40,7 +38,6 @@ SfxRangeItem::SfxRangeItem()
}
-
SfxRangeItem::SfxRangeItem( sal_uInt16 which, sal_uInt16 from, sal_uInt16 to ):
SfxPoolItem( which ),
nFrom( from ),
@@ -49,7 +46,6 @@ SfxRangeItem::SfxRangeItem( sal_uInt16 which, sal_uInt16 from, sal_uInt16 to ):
}
-
SfxRangeItem::SfxRangeItem( const SfxRangeItem& rItem ) :
SfxPoolItem( rItem )
{
@@ -58,7 +54,6 @@ SfxRangeItem::SfxRangeItem( const SfxRangeItem& rItem ) :
}
-
bool SfxRangeItem::GetPresentation
(
SfxItemPresentation /*ePresentation*/,
@@ -73,7 +68,6 @@ bool SfxRangeItem::GetPresentation
}
-
bool SfxRangeItem::operator==( const SfxPoolItem& rItem ) const
{
DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" );
@@ -82,14 +76,12 @@ bool SfxRangeItem::operator==( const SfxPoolItem& rItem ) const
}
-
SfxPoolItem* SfxRangeItem::Clone(SfxItemPool *) const
{
return new SfxRangeItem( Which(), nFrom, nTo );
}
-
SfxPoolItem* SfxRangeItem::Create(SvStream &rStream, sal_uInt16) const
{
sal_uInt16 nVon(0), nBis(0);
@@ -99,7 +91,6 @@ SfxPoolItem* SfxRangeItem::Create(SvStream &rStream, sal_uInt16) const
}
-
SvStream& SfxRangeItem::Store(SvStream &rStream, sal_uInt16) const
{
rStream.WriteUInt16( nFrom );