diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-01-20 12:04:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-01-20 12:14:46 +0100 |
commit | 0a77071485b611702c66182365016226591d0a29 (patch) | |
tree | 0bf341a2c2a08412724073c53aa824644a420971 /stoc/source/invocation_adapterfactory | |
parent | d92ac0dfbf5fd5a82176feb43d471f10a12e889b (diff) |
Code clean up.
Diffstat (limited to 'stoc/source/invocation_adapterfactory')
-rw-r--r-- | stoc/source/invocation_adapterfactory/iafactory.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
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 ); } } } |