summaryrefslogtreecommitdiff
path: root/svl/source/items/rngitem.cxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-02-09 18:16:42 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-02-09 08:18:05 +0000
commita238b1f8d304bf1e2ffb357937f3ec888ee8ac89 (patch)
tree083c0582d4bf80e313ed256ca476ba8f69c7f7a6 /svl/source/items/rngitem.cxx
parent538f276ae0414ea34ede6090b5f56e8fecd6fc65 (diff)
Remove excess newlines
A ridiculously fast way of doing this is: for i in $(pcregrep -l -M -r --include='.*[hc]xx$' \ --exclude-dir=workdir --exclude-dir=instdir '^ {3,}' .) do perl -0777 -i -pe 's/^ {3,}/ /gm' $i done Change-Id: Iebb93eccbee9e4fc5c4380474ba595858a27ac2c Reviewed-on: https://gerrit.libreoffice.org/22224 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
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 );