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 /sc | |
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 'sc')
-rw-r--r-- | sc/source/core/data/cellvalues.cxx | 1 | ||||
-rw-r--r-- | sc/source/core/data/colorscale.cxx | 1 | ||||
-rw-r--r-- | sc/source/core/data/funcdesc.cxx | 1 | ||||
-rw-r--r-- | sc/source/filter/inc/namebuff.hxx | 3 | ||||
-rw-r--r-- | sc/source/filter/inc/tokstack.hxx | 1 | ||||
-rw-r--r-- | sc/source/filter/oox/ooxformulaparser.cxx | 1 | ||||
-rw-r--r-- | sc/source/ui/drawfunc/graphsh.cxx | 1 |
7 files changed, 0 insertions, 9 deletions
diff --git a/sc/source/core/data/cellvalues.cxx b/sc/source/core/data/cellvalues.cxx index 049538da5f99..183daf96bb0f 100644 --- a/sc/source/core/data/cellvalues.cxx +++ b/sc/source/core/data/cellvalues.cxx @@ -53,7 +53,6 @@ void CellValues::transferFrom( ScColumn& rCol, SCROW nRow, size_t nLen ) } - void CellValues::copyTo( ScColumn& rCol, SCROW nRow ) const { copyCellsTo(rCol, nRow); diff --git a/sc/source/core/data/colorscale.cxx b/sc/source/core/data/colorscale.cxx index 42904e108004..bfa1c4d4adf0 100644 --- a/sc/source/core/data/colorscale.cxx +++ b/sc/source/core/data/colorscale.cxx @@ -614,7 +614,6 @@ bool ScColorScaleFormat::NeedsRepaint() const } - condformat::ScFormatEntryType ScColorScaleFormat::GetType() const { return condformat::COLORSCALE; diff --git a/sc/source/core/data/funcdesc.cxx b/sc/source/core/data/funcdesc.cxx index 10c070b8275b..acb3c66b707a 100644 --- a/sc/source/core/data/funcdesc.cxx +++ b/sc/source/core/data/funcdesc.cxx @@ -698,7 +698,6 @@ ScFunctionMgr::~ScFunctionMgr() } - const ScFuncDesc* ScFunctionMgr::Get( sal_uInt16 nFIndex ) const { const ScFuncDesc* pDesc; diff --git a/sc/source/filter/inc/namebuff.hxx b/sc/source/filter/inc/namebuff.hxx index c1bba3693f8d..4a551756af35 100644 --- a/sc/source/filter/inc/namebuff.hxx +++ b/sc/source/filter/inc/namebuff.hxx @@ -111,9 +111,6 @@ inline NameBuffer::NameBuffer( RootData* p, sal_uInt16 nNewBase ) : ExcRoot( p ) } - - - inline void NameBuffer::SetBase( sal_uInt16 nNewBase ) { nBase = nNewBase; diff --git a/sc/source/filter/inc/tokstack.hxx b/sc/source/filter/inc/tokstack.hxx index e51df0c08d52..6a1ed79715b5 100644 --- a/sc/source/filter/inc/tokstack.hxx +++ b/sc/source/filter/inc/tokstack.hxx @@ -357,7 +357,6 @@ const inline ScTokenArray* TokenPool::operator []( const TokenId& rId ) } - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sc/source/filter/oox/ooxformulaparser.cxx b/sc/source/filter/oox/ooxformulaparser.cxx index 2647b7d46005..e298876e62a4 100644 --- a/sc/source/filter/oox/ooxformulaparser.cxx +++ b/sc/source/filter/oox/ooxformulaparser.cxx @@ -173,5 +173,4 @@ com_sun_star_comp_oox_xls_FormulaParser_get_implementation(css::uno::XComponentC } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sc/source/ui/drawfunc/graphsh.cxx b/sc/source/ui/drawfunc/graphsh.cxx index b8032fb07474..c3242c53bdac 100644 --- a/sc/source/ui/drawfunc/graphsh.cxx +++ b/sc/source/ui/drawfunc/graphsh.cxx @@ -343,5 +343,4 @@ void ScGraphicShell::GetChangePictureState(SfxItemSet &rSet) } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |