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 /svx/source/tbxctrls/linectrl.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 'svx/source/tbxctrls/linectrl.cxx')
-rw-r--r-- | svx/source/tbxctrls/linectrl.cxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/svx/source/tbxctrls/linectrl.cxx b/svx/source/tbxctrls/linectrl.cxx index 9efab7a52054..6b7fc9d1ce5d 100644 --- a/svx/source/tbxctrls/linectrl.cxx +++ b/svx/source/tbxctrls/linectrl.cxx @@ -63,7 +63,6 @@ SvxLineStyleToolBoxControl::SvxLineStyleToolBoxControl( sal_uInt16 nSlotId, } - SvxLineStyleToolBoxControl::~SvxLineStyleToolBoxControl() { delete pStyleItem; @@ -71,7 +70,6 @@ SvxLineStyleToolBoxControl::~SvxLineStyleToolBoxControl() } - void SvxLineStyleToolBoxControl::StateChanged ( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState ) @@ -114,7 +112,6 @@ void SvxLineStyleToolBoxControl::StateChanged ( } - void SvxLineStyleToolBoxControl::Update( const SfxPoolItem* pState ) { if ( pState && bUpdate ) @@ -182,7 +179,6 @@ void SvxLineStyleToolBoxControl::Update( const SfxPoolItem* pState ) } - VclPtr<vcl::Window> SvxLineStyleToolBoxControl::CreateItemWindow( vcl::Window *pParent ) { return VclPtr<SvxLineBox>::Create( pParent, m_xFrame ).get(); @@ -196,13 +192,11 @@ SvxLineWidthToolBoxControl::SvxLineWidthToolBoxControl( } - SvxLineWidthToolBoxControl::~SvxLineWidthToolBoxControl() { } - void SvxLineWidthToolBoxControl::StateChanged( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState ) { @@ -243,7 +237,6 @@ void SvxLineWidthToolBoxControl::StateChanged( } - VclPtr<vcl::Window> SvxLineWidthToolBoxControl::CreateItemWindow( vcl::Window *pParent ) { return VclPtr<SvxMetricField>::Create( pParent, m_xFrame ).get(); @@ -386,7 +379,6 @@ IMPL_LINK_NOARG_TYPED(SvxLineEndWindow, SelectHdl, ValueSet*, void) } - void SvxLineEndWindow::FillValueSet() { if( pLineEndList.is() ) @@ -437,7 +429,6 @@ void SvxLineEndWindow::FillValueSet() } - void SvxLineEndWindow::Resize() { // since we change the size inside this call, check if we @@ -463,7 +454,6 @@ void SvxLineEndWindow::Resize() } - void SvxLineEndWindow::Resizing( Size& rNewSize ) { Size aBitmapSize = aBmpSize; // -> Member @@ -517,14 +507,12 @@ void SvxLineEndWindow::StartSelection() } - bool SvxLineEndWindow::Close() { return SfxPopupWindow::Close(); } - void SvxLineEndWindow::StateChanged( sal_uInt16 nSID, SfxItemState, const SfxPoolItem* pState ) { @@ -547,7 +535,6 @@ void SvxLineEndWindow::StateChanged( } - void SvxLineEndWindow::PopupModeEnd() { if ( IsVisible() ) @@ -559,7 +546,6 @@ void SvxLineEndWindow::PopupModeEnd() } - void SvxLineEndWindow::SetSize() { //if( !bPopupMode ) @@ -606,13 +592,11 @@ SvxLineEndToolBoxControl::SvxLineEndToolBoxControl( sal_uInt16 nSlotId, sal_uInt } - SvxLineEndToolBoxControl::~SvxLineEndToolBoxControl() { } - VclPtr<SfxPopupWindow> SvxLineEndToolBoxControl::CreatePopupWindow() { SvxLineEndWindow* pLineEndWin = @@ -627,7 +611,6 @@ VclPtr<SfxPopupWindow> SvxLineEndToolBoxControl::CreatePopupWindow() } - void SvxLineEndToolBoxControl::StateChanged( sal_uInt16, SfxItemState eState, const SfxPoolItem* ) { sal_uInt16 nId = GetId(); |