From b6d97514cdca32129142cd937ac0cbda3113f562 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Sat, 29 Jun 2013 18:30:34 +0200 Subject: reduce some spacing Change-Id: I72d494b1c0ff5ed3c52ae6a078815f497e4dd647 --- pyuno/source/module/pyuno_adapter.cxx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'pyuno') diff --git a/pyuno/source/module/pyuno_adapter.cxx b/pyuno/source/module/pyuno_adapter.cxx index b51bc06912d0..41a2e242aad1 100644 --- a/pyuno/source/module/pyuno_adapter.cxx +++ b/pyuno/source/module/pyuno_adapter.cxx @@ -132,9 +132,7 @@ Sequence< sal_Int16 > Adapter::getOutIndexes( const OUString & functionName ) if( ! method.is( ) ) { throw RuntimeException( - (OUString( - "pyuno bridge: Couldn't get reflection for method ") - + functionName), + "pyuno bridge: Couldn't get reflection for method " + functionName, Reference< XInterface > () ); } @@ -265,9 +263,7 @@ Any Adapter::invoke( const OUString &aFunctionName, if( ! ( ret >>= seq ) ) { throw RuntimeException( - (OUString("pyuno bridge: Couldn't extract out" - " parameters for method ") - + aFunctionName), + "pyuno bridge: Couldn't extract out parameters for method " + aFunctionName, Reference< XInterface > () ); } -- cgit