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 /linguistic/workben | |
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 'linguistic/workben')
-rw-r--r-- | linguistic/workben/sprophelp.cxx | 2 | ||||
-rw-r--r-- | linguistic/workben/sprophelp.hxx | 2 | ||||
-rw-r--r-- | linguistic/workben/sspellimp.cxx | 3 | ||||
-rw-r--r-- | linguistic/workben/sspellimp.hxx | 2 |
4 files changed, 0 insertions, 9 deletions
diff --git a/linguistic/workben/sprophelp.cxx b/linguistic/workben/sprophelp.cxx index 642a92b92f10..8ff57ef41601 100644 --- a/linguistic/workben/sprophelp.cxx +++ b/linguistic/workben/sprophelp.cxx @@ -39,8 +39,6 @@ using namespace com::sun::star::linguistic2; using namespace linguistic; - - PropertyChgHelper::PropertyChgHelper( const Reference< XInterface > & rxSource, Reference< XPropertySet > &rxPropSet, diff --git a/linguistic/workben/sprophelp.hxx b/linguistic/workben/sprophelp.hxx index 8e115a55805b..ab4f1dab947a 100644 --- a/linguistic/workben/sprophelp.hxx +++ b/linguistic/workben/sprophelp.hxx @@ -102,8 +102,6 @@ public: }; - - class PropertyHelper_Spell : public PropertyChgHelper { diff --git a/linguistic/workben/sspellimp.cxx b/linguistic/workben/sspellimp.cxx index 5310fe5dbde2..2cc3f46921bf 100644 --- a/linguistic/workben/sspellimp.cxx +++ b/linguistic/workben/sspellimp.cxx @@ -42,7 +42,6 @@ using namespace com::sun::star::linguistic2; using namespace linguistic; - sal_Bool operator == ( const Locale &rL1, const Locale &rL2 ) { return rL1.Language == rL2.Language && @@ -51,7 +50,6 @@ sal_Bool operator == ( const Locale &rL1, const Locale &rL2 ) } - SpellChecker::SpellChecker() : aEvtListeners ( GetLinguMutex() ) { @@ -477,5 +475,4 @@ void * SAL_CALL SpellChecker_getFactory( const sal_Char * pImplName, } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/linguistic/workben/sspellimp.hxx b/linguistic/workben/sspellimp.hxx index 7e70fdf0a4a2..f07674ca1303 100644 --- a/linguistic/workben/sspellimp.hxx +++ b/linguistic/workben/sspellimp.hxx @@ -40,7 +40,6 @@ using namespace ::com::sun::star::lang; using namespace ::com::sun::star::linguistic2; - class SpellChecker : public cppu::WeakImplHelper < @@ -153,7 +152,6 @@ inline OUString SpellChecker::getImplementationName_Static() throw() } - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |