summaryrefslogtreecommitdiff
path: root/pyuno/source/module/pyuno_callable.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'pyuno/source/module/pyuno_callable.cxx')
-rw-r--r--pyuno/source/module/pyuno_callable.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/pyuno/source/module/pyuno_callable.cxx b/pyuno/source/module/pyuno_callable.cxx
index 3e47361a927c..ef6a707bf4aa 100644
--- a/pyuno/source/module/pyuno_callable.cxx
+++ b/pyuno/source/module/pyuno_callable.cxx
@@ -80,7 +80,7 @@ PyObject* PyUNO_callable_call(
cargo = runtime.getImpl()->cargo;
any_params = runtime.pyObject2Any (args, me->members->mode);
- if (any_params.getValueTypeClass () == com::sun::star::uno::TypeClass_SEQUENCE)
+ if (any_params.getValueTypeClass () == css::uno::TypeClass_SEQUENCE)
{
any_params >>= aParams;
}
@@ -139,7 +139,7 @@ PyObject* PyUNO_callable_call(
ret = temp;
}
}
- catch( const com::sun::star::reflection::InvocationTargetException & e )
+ catch( const css::reflection::InvocationTargetException & e )
{
if( isLog( cargo, LogLevel::CALL ) )
@@ -149,32 +149,32 @@ PyObject* PyUNO_callable_call(
}
raisePyExceptionWithAny( e.TargetException );
}
- catch( const com::sun::star::script::CannotConvertException &e )
+ catch( const css::script::CannotConvertException &e )
{
if( isLog( cargo, LogLevel::CALL ) )
{
logException( cargo, "error py->uno[0x", me->members->xInvocation.get() ,
me->members->methodName, &e, cppu::UnoType<decltype(e)>::get().getTypeLibType());
}
- raisePyExceptionWithAny( com::sun::star::uno::makeAny( e ) );
+ raisePyExceptionWithAny( css::uno::makeAny( e ) );
}
- catch( const com::sun::star::lang::IllegalArgumentException &e )
+ catch( const css::lang::IllegalArgumentException &e )
{
if( isLog( cargo, LogLevel::CALL ) )
{
logException( cargo, "error py->uno[0x", me->members->xInvocation.get() ,
me->members->methodName, &e, cppu::UnoType<decltype(e)>::get().getTypeLibType());
}
- raisePyExceptionWithAny( com::sun::star::uno::makeAny( e ) );
+ raisePyExceptionWithAny( css::uno::makeAny( e ) );
}
- catch (const ::com::sun::star::uno::RuntimeException &e)
+ catch (const css::uno::RuntimeException &e)
{
if( cargo && isLog( cargo, LogLevel::CALL ) )
{
logException( cargo, "error py->uno[0x", me->members->xInvocation.get() ,
me->members->methodName, &e, cppu::UnoType<decltype(e)>::get().getTypeLibType());
}
- raisePyExceptionWithAny( com::sun::star::uno::makeAny( e ) );
+ raisePyExceptionWithAny( css::uno::makeAny( e ) );
}
return ret.getAcquired();