summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-06-29 18:30:34 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-06-29 18:38:14 +0200
commitb6d97514cdca32129142cd937ac0cbda3113f562 (patch)
tree802c73760715910cb707dd05079758d07edb05a6 /pyuno
parent56dc79822d5c464b33b1d0199558ca684e94c069 (diff)
reduce some spacing
Change-Id: I72d494b1c0ff5ed3c52ae6a078815f497e4dd647
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/source/module/pyuno_adapter.cxx8
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 > () );
}