summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-20 12:04:54 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-20 12:14:46 +0100
commit0a77071485b611702c66182365016226591d0a29 (patch)
tree0bf341a2c2a08412724073c53aa824644a420971 /stoc
parentd92ac0dfbf5fd5a82176feb43d471f10a12e889b (diff)
Code clean up.
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/invocation_adapterfactory/iafactory.cxx12
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 );
}
}
}