From 0a77071485b611702c66182365016226591d0a29 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 20 Jan 2012 12:04:54 +0100 Subject: Code clean up. --- stoc/source/invocation_adapterfactory/iafactory.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'stoc/source/invocation_adapterfactory') diff --git a/stoc/source/invocation_adapterfactory/iafactory.cxx b/stoc/source/invocation_adapterfactory/iafactory.cxx index 39c713a54e5d..ff075d4c1932 100644 --- a/stoc/source/invocation_adapterfactory/iafactory.cxx +++ b/stoc/source/invocation_adapterfactory/iafactory.cxx @@ -157,10 +157,10 @@ struct AdapterImpl // XInvocation calls void getValue( const typelib_TypeDescription * pMemberType, - void * pReturn, void * pArgs[], uno_Any ** ppException ); + void * pReturn, uno_Any ** ppException ); void setValue( const typelib_TypeDescription * pMemberType, - void * pReturn, void * pArgs[], uno_Any ** ppException ); + void * pArgs[], uno_Any ** ppException ); void invoke( const typelib_TypeDescription * pMemberType, void * pReturn, void * pArgs[], uno_Any ** ppException ); @@ -380,7 +380,7 @@ static void handleInvokExc( uno_Any * pDest, uno_Any * pSource ) //______________________________________________________________________________ void AdapterImpl::getValue( const typelib_TypeDescription * pMemberType, - void * pReturn, void * [], uno_Any ** ppException ) + void * pReturn, uno_Any ** ppException ) { uno_Any aInvokRet; void * pInvokArgs[1]; @@ -415,7 +415,7 @@ void AdapterImpl::getValue( //______________________________________________________________________________ void AdapterImpl::setValue( const typelib_TypeDescription * pMemberType, - void *, void * pArgs[], uno_Any ** ppException ) + void * pArgs[], uno_Any ** ppException ) { uno_Any aInvokVal; ::uno_type_any_construct( @@ -647,9 +647,9 @@ static void SAL_CALL adapter_dispatch( else // attribute { if (pReturn) - that->getValue( pMemberType, pReturn, pArgs, ppException ); + that->getValue( pMemberType, pReturn, ppException ); else - that->setValue( pMemberType, pReturn, pArgs, ppException ); + that->setValue( pMemberType, pArgs, ppException ); } } } -- cgit