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 /cli_ure | |
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 'cli_ure')
-rw-r--r-- | cli_ure/source/climaker/climaker_emit.cxx | 4 | ||||
-rw-r--r-- | cli_ure/source/uno_bridge/cli_bridge.cxx | 2 | ||||
-rw-r--r-- | cli_ure/source/uno_bridge/cli_proxy.cxx | 6 | ||||
-rw-r--r-- | cli_ure/source/uno_bridge/cli_uno.cxx | 2 |
4 files changed, 0 insertions, 14 deletions
diff --git a/cli_ure/source/climaker/climaker_emit.cxx b/cli_ure/source/climaker/climaker_emit.cxx index 717e0cc51fb9..7e9c466344fa 100644 --- a/cli_ure/source/climaker/climaker_emit.cxx +++ b/cli_ure/source/climaker/climaker_emit.cxx @@ -269,8 +269,6 @@ System::String^ mapUnoPolymorphicName(System::String^ unoName) } - - Assembly ^ TypeEmitter::type_resolve( ::System::Object ^, ::System::ResolveEventArgs ^ args ) { @@ -755,7 +753,6 @@ Assembly ^ TypeEmitter::type_resolve( } - ::System::Type ^ TypeEmitter::get_type( Reference< reflection::XServiceTypeDescription2 > const & xType ) { @@ -2049,7 +2046,6 @@ Emit::CustomAttributeBuilder^ TypeEmitter::get_exception_attribute( } - ::System::Type ^ TypeEmitter::get_type( Reference< reflection::XTypeDescription > const & xType ) { diff --git a/cli_ure/source/uno_bridge/cli_bridge.cxx b/cli_ure/source/uno_bridge/cli_bridge.cxx index 241581ddac18..3fb8f98f6dfc 100644 --- a/cli_ure/source/uno_bridge/cli_bridge.cxx +++ b/cli_ure/source/uno_bridge/cli_bridge.cxx @@ -53,7 +53,6 @@ void SAL_CALL Mapping_release( uno_Mapping * mapping ) } - void SAL_CALL Mapping_cli2uno( uno_Mapping * mapping, void ** ppOut, void * pIn, typelib_InterfaceTypeDescription * td ) @@ -241,7 +240,6 @@ Bridge::~Bridge() } - } //namespace cli_uno extern "C" diff --git a/cli_ure/source/uno_bridge/cli_proxy.cxx b/cli_ure/source/uno_bridge/cli_proxy.cxx index e017bcb4c6dc..d569ecfc2927 100644 --- a/cli_ure/source/uno_bridge/cli_proxy.cxx +++ b/cli_ure/source/uno_bridge/cli_proxy.cxx @@ -844,7 +844,6 @@ uno_Interface* CliProxy::create(Bridge const * bridge, } - void SAL_CALL CliProxy::uno_DispatchMethod( struct _uno_Interface *, const struct _typelib_TypeDescription *, @@ -886,8 +885,6 @@ inline void CliProxy::release() const } - - extern "C" void SAL_CALL cli_proxy_free( uno_ExtEnvironment *, void * proxy ) SAL_THROW_EXTERN_C() @@ -1109,7 +1106,4 @@ void SAL_CALL cli_proxy_dispatch( } - - - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/cli_ure/source/uno_bridge/cli_uno.cxx b/cli_ure/source/uno_bridge/cli_uno.cxx index 74bf158a53f2..0d1d197a11b8 100644 --- a/cli_ure/source/uno_bridge/cli_uno.cxx +++ b/cli_ure/source/uno_bridge/cli_uno.cxx @@ -271,8 +271,6 @@ void Bridge::call_cli( } - - } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |