diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-06-29 18:30:34 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-06-29 18:38:14 +0200 |
commit | b6d97514cdca32129142cd937ac0cbda3113f562 (patch) | |
tree | 802c73760715910cb707dd05079758d07edb05a6 /pyuno/source | |
parent | 56dc79822d5c464b33b1d0199558ca684e94c069 (diff) |
reduce some spacing
Change-Id: I72d494b1c0ff5ed3c52ae6a078815f497e4dd647
Diffstat (limited to 'pyuno/source')
-rw-r--r-- | pyuno/source/module/pyuno_adapter.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
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 > () ); } |