diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-09 18:16:42 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-09 08:18:05 +0000 |
commit | a238b1f8d304bf1e2ffb357937f3ec888ee8ac89 (patch) | |
tree | 083c0582d4bf80e313ed256ca476ba8f69c7f7a6 /svl/source/items/ptitem.cxx | |
parent | 538f276ae0414ea34ede6090b5f56e8fecd6fc65 (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/ptitem.cxx')
-rw-r--r-- | svl/source/items/ptitem.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/svl/source/items/ptitem.cxx b/svl/source/items/ptitem.cxx index e4f5c3593edb..4f1dee4a9bbf 100644 --- a/svl/source/items/ptitem.cxx +++ b/svl/source/items/ptitem.cxx @@ -39,7 +39,6 @@ SfxPointItem::SfxPointItem() } - SfxPointItem::SfxPointItem( sal_uInt16 nW, const Point& rVal ) : SfxPoolItem( nW ), aVal( rVal ) @@ -47,7 +46,6 @@ SfxPointItem::SfxPointItem( sal_uInt16 nW, const Point& rVal ) : } - SfxPointItem::SfxPointItem( const SfxPointItem& rItem ) : SfxPoolItem( rItem ), aVal( rItem.aVal ) @@ -55,7 +53,6 @@ SfxPointItem::SfxPointItem( const SfxPointItem& rItem ) : } - bool SfxPointItem::GetPresentation ( SfxItemPresentation /*ePresentation*/, @@ -70,7 +67,6 @@ bool SfxPointItem::GetPresentation } - bool SfxPointItem::operator==( const SfxPoolItem& rItem ) const { DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" ); @@ -78,14 +74,12 @@ bool SfxPointItem::operator==( const SfxPoolItem& rItem ) const } - SfxPoolItem* SfxPointItem::Clone(SfxItemPool *) const { return new SfxPointItem( *this ); } - SfxPoolItem* SfxPointItem::Create(SvStream &rStream, sal_uInt16 ) const { Point aStr; @@ -94,7 +88,6 @@ SfxPoolItem* SfxPointItem::Create(SvStream &rStream, sal_uInt16 ) const } - SvStream& SfxPointItem::Store(SvStream &rStream, sal_uInt16 ) const { WritePair( rStream, aVal ); @@ -102,7 +95,6 @@ SvStream& SfxPointItem::Store(SvStream &rStream, sal_uInt16 ) const } - bool SfxPointItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const { @@ -126,7 +118,6 @@ bool SfxPointItem::QueryValue( uno::Any& rVal, } - bool SfxPointItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) { @@ -166,5 +157,4 @@ bool SfxPointItem::PutValue( const uno::Any& rVal, } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |