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 /vbahelper | |
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 'vbahelper')
-rw-r--r-- | vbahelper/source/msforms/vbanewfont.cxx | 1 | ||||
-rw-r--r-- | vbahelper/source/msforms/vbanewfont.hxx | 1 | ||||
-rw-r--r-- | vbahelper/source/vbahelper/vbacommandbarcontrols.cxx | 2 | ||||
-rw-r--r-- | vbahelper/source/vbahelper/vbaeventshelperbase.cxx | 2 | ||||
-rw-r--r-- | vbahelper/source/vbahelper/vbahelper.cxx | 2 |
5 files changed, 0 insertions, 8 deletions
diff --git a/vbahelper/source/msforms/vbanewfont.cxx b/vbahelper/source/msforms/vbanewfont.cxx index 5778845c0c28..e9639b4b6dee 100644 --- a/vbahelper/source/msforms/vbanewfont.cxx +++ b/vbahelper/source/msforms/vbanewfont.cxx @@ -28,7 +28,6 @@ using namespace ::com::sun::star; using namespace ::ooo::vba; - VbaNewFont::VbaNewFont( const uno::Reference< beans::XPropertySet >& rxModelProps ) throw (uno::RuntimeException) : mxProps( rxModelProps, uno::UNO_SET_THROW ) diff --git a/vbahelper/source/msforms/vbanewfont.hxx b/vbahelper/source/msforms/vbanewfont.hxx index a8354c8f55cf..ceebd68c56f9 100644 --- a/vbahelper/source/msforms/vbanewfont.hxx +++ b/vbahelper/source/msforms/vbanewfont.hxx @@ -56,7 +56,6 @@ private: }; - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/vbahelper/source/vbahelper/vbacommandbarcontrols.cxx b/vbahelper/source/vbahelper/vbacommandbarcontrols.cxx index 003610c9969c..63b9cb0bdfa0 100644 --- a/vbahelper/source/vbahelper/vbacommandbarcontrols.cxx +++ b/vbahelper/source/vbahelper/vbacommandbarcontrols.cxx @@ -253,7 +253,6 @@ ScVbaCommandBarControls::getServiceNames() } - class VbaDummyIndexAccess : public ::cppu::WeakImplHelper< container::XIndexAccess > { public: @@ -271,7 +270,6 @@ public: }; - VbaDummyCommandBarControls::VbaDummyCommandBarControls( const uno::Reference< XHelperInterface >& xParent, const uno::Reference< uno::XComponentContext >& xContext ) throw (uno::RuntimeException) : diff --git a/vbahelper/source/vbahelper/vbaeventshelperbase.cxx b/vbahelper/source/vbahelper/vbaeventshelperbase.cxx index 328ccda87cfe..fb1db5bdcc14 100644 --- a/vbahelper/source/vbahelper/vbaeventshelperbase.cxx +++ b/vbahelper/source/vbahelper/vbaeventshelperbase.cxx @@ -29,7 +29,6 @@ using namespace ::com::sun::star; using namespace ::ooo::vba; - VbaEventsHelperBase::VbaEventsHelperBase( const uno::Sequence< uno::Any >& rArgs, const uno::Reference< uno::XComponentContext >& /*xContext*/ ) : mpShell( nullptr ), mbDisposed( true ) @@ -344,5 +343,4 @@ VbaEventsHelperBase::ModulePathMap& VbaEventsHelperBase::updateModulePathMap( co } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/vbahelper/source/vbahelper/vbahelper.cxx b/vbahelper/source/vbahelper/vbahelper.cxx index 1622874e7326..721c7f793324 100644 --- a/vbahelper/source/vbahelper/vbahelper.cxx +++ b/vbahelper/source/vbahelper/vbahelper.cxx @@ -885,7 +885,6 @@ double UserFormGeometryHelper::getOffsetY() const } - static const char saPosXName[] = "PositionX"; static const char saPosYName[] = "PositionY"; static const char saWidthName[] = "Width"; @@ -965,7 +964,6 @@ void UserFormGeometryHelper::implSetSize( double fSize, bool bHeight, bool bOute } - double ConcreteXShapeGeometryAttributes::getLeft() const { return m_pShapeHelper->getLeft(); |