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 /include/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 'include/vbahelper')
-rw-r--r-- | include/vbahelper/vbacollectionimpl.hxx | 5 | ||||
-rw-r--r-- | include/vbahelper/vbaeventshelperbase.hxx | 3 | ||||
-rw-r--r-- | include/vbahelper/vbahelperinterface.hxx | 5 |
3 files changed, 0 insertions, 13 deletions
diff --git a/include/vbahelper/vbacollectionimpl.hxx b/include/vbahelper/vbacollectionimpl.hxx index 5adcb042a466..fd792082dde3 100644 --- a/include/vbahelper/vbacollectionimpl.hxx +++ b/include/vbahelper/vbacollectionimpl.hxx @@ -34,11 +34,9 @@ #include <vector> - typedef ::cppu::WeakImplHelper< css::container::XEnumeration > EnumerationHelper_BASE; - /** A wrapper that holds a com.sun.star.container.XIndexAccess and provides a com.sun.star.container.XEnumeration. @@ -72,7 +70,6 @@ private: }; - /** A wrapper that holds a com.sun.star.container.XEnumeration or a com.sun.star.container.XIndexAccess and provides an enumeration of VBA objects. @@ -110,7 +107,6 @@ protected: }; - // deprecated, use SimpleEnumerationBase instead! class VBAHELPER_DLLPUBLIC EnumerationHelperImpl : public EnumerationHelper_BASE { @@ -128,7 +124,6 @@ public: // only requirement is the object needs to implement XName - typedef ::cppu::WeakImplHelper< css::container::XNameAccess, css::container::XIndexAccess, css::container::XEnumerationAccess > XNamedCollectionHelper_BASE; template< typename OneIfc > diff --git a/include/vbahelper/vbaeventshelperbase.hxx b/include/vbahelper/vbaeventshelperbase.hxx index dd2cfba96461..6bfb8fd8bb83 100644 --- a/include/vbahelper/vbaeventshelperbase.hxx +++ b/include/vbahelper/vbaeventshelperbase.hxx @@ -35,7 +35,6 @@ namespace com { namespace sun { namespace star { } } } - typedef ::cppu::WeakImplHelper< css::script::vba::XVBAEventProcessor, css::document::XEventListener, @@ -107,7 +106,6 @@ protected: const css::uno::Any& rUserData = css::uno::Any() ); - struct EventQueueEntry { sal_Int32 mnEventId; @@ -184,7 +182,6 @@ private: }; - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/vbahelper/vbahelperinterface.hxx b/include/vbahelper/vbahelperinterface.hxx index 21e718594b9d..1ec99155e270 100644 --- a/include/vbahelper/vbahelperinterface.hxx +++ b/include/vbahelper/vbahelperinterface.hxx @@ -108,7 +108,6 @@ public: }; - /** Helper macro to implement the method 'getServiceImplName()' of the 'ooo.vba.XHelperInterface' interface. Will return the class name as service implementation name. @@ -120,7 +119,6 @@ OUString classname::getServiceImplName() \ } - /** Helper macro to implement the method 'getServiceNames()' for a single service name. */ @@ -137,7 +135,6 @@ css::uno::Sequence< OUString > classname::getServiceNames() \ } - /** Helper macro to declare the methods 'getServiceImplName()' and 'getServiceNames()' of the 'ooo.vba.XHelperInterface' interface in a class declaration. @@ -147,7 +144,6 @@ css::uno::Sequence< OUString > classname::getServiceNames() \ virtual css::uno::Sequence< OUString > getServiceNames() override; - /** Helper macro to implement the methods 'getServiceImplName()' and 'getServiceNames()' of the 'ooo.vba.XHelperInterface' interface. Will return the class name as service implementation name. @@ -157,7 +153,6 @@ VBAHELPER_IMPL_GETSERVICEIMPLNAME( classname ) \ VBAHELPER_IMPL_GETSERVICENAMES( classname, servicename ) - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |