summaryrefslogtreecommitdiff
path: root/cppu/source/uno/cascade_mapping.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-07-18 11:22:31 +0000
committerOliver Bolte <obo@openoffice.org>2007-07-18 11:22:31 +0000
commit90d09d7096ed4ed63e73f65d7bf81ae273da76d2 (patch)
tree27b0a952e85cc87a127fefaa545ed271a121c846 /cppu/source/uno/cascade_mapping.cxx
parentcaf94d5af3875b23720a5c80ac5ff80706b6a709 (diff)
INTEGRATION: CWS unomacli64 (1.2.2); FILE MERGED
2007/06/05 15:06:18 kr 1.2.2.1: #i77422# Use va_list * instead of plain type
Diffstat (limited to 'cppu/source/uno/cascade_mapping.cxx')
-rw-r--r--cppu/source/uno/cascade_mapping.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/cppu/source/uno/cascade_mapping.cxx b/cppu/source/uno/cascade_mapping.cxx
index d2100c9899a3..6c4ceab7fd62 100644
--- a/cppu/source/uno/cascade_mapping.cxx
+++ b/cppu/source/uno/cascade_mapping.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: cascade_mapping.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: kz $ $Date: 2007-05-09 13:38:28 $
+ * last change: $Author: obo $ $Date: 2007-07-18 12:22:31 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -149,12 +149,12 @@ void MediatorMapping::release(void)
}
}
-extern "C" { static void s_mapInterface_v(va_list param)
+extern "C" { static void s_mapInterface_v(va_list * pParam)
{
- void ** ppOut = va_arg(param, void **);
- void * pInterface = va_arg(param, void *);
- typelib_InterfaceTypeDescription * pInterfaceTypeDescr = va_arg(param, typelib_InterfaceTypeDescription *);
- uno_Mapping * pMapping = va_arg(param, uno_Mapping *);
+ void ** ppOut = va_arg(*pParam, void **);
+ void * pInterface = va_arg(*pParam, void *);
+ typelib_InterfaceTypeDescription * pInterfaceTypeDescr = va_arg(*pParam, typelib_InterfaceTypeDescription *);
+ uno_Mapping * pMapping = va_arg(*pParam, uno_Mapping *);
pMapping->mapInterface(pMapping, ppOut, pInterface, pInterfaceTypeDescr);
}}