summaryrefslogtreecommitdiff
path: root/cppuhelper/source
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-07-18 11:17:07 +0000
committerOliver Bolte <obo@openoffice.org>2007-07-18 11:17:07 +0000
commit00c5432776dc5ee6a271e9421bdc1a3a3a63a710 (patch)
treef7060f81cf379d2098d48059ca993582e07e128d /cppuhelper/source
parentd91725d4e05ff44c015747ff375c1a5eb5326e66 (diff)
INTEGRATION: CWS unomacli64 (1.30.6); FILE MERGED
2007/06/06 07:40:31 kr 1.30.6.1: #i77422# Use va_list * instead of plain type; added missing include for precompiled headers
Diffstat (limited to 'cppuhelper/source')
-rw-r--r--cppuhelper/source/component_context.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/cppuhelper/source/component_context.cxx b/cppuhelper/source/component_context.cxx
index d60cef369..c3d32452a 100644
--- a/cppuhelper/source/component_context.cxx
+++ b/cppuhelper/source/component_context.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: component_context.cxx,v $
*
- * $Revision: 1.30 $
+ * $Revision: 1.31 $
*
- * last change: $Author: kz $ $Date: 2007-05-09 13:25:10 $
+ * last change: $Author: obo $ $Date: 2007-07-18 12:17:07 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -833,13 +833,13 @@ ComponentContext::ComponentContext(
//##################################################################################################
-extern "C" { static void s_createComponentContext_v(va_list param)
+extern "C" { static void s_createComponentContext_v(va_list * pParam)
{
- ContextEntry_Init const * pEntries = va_arg(param, ContextEntry_Init const *);
- sal_Int32 nEntries = va_arg(param, sal_Int32);
- XComponentContext * pDelegatee = va_arg(param, XComponentContext *);
- void ** ppContext = va_arg(param, void **);
- uno::Mapping * pTarget2curr = va_arg(param, uno::Mapping *);
+ ContextEntry_Init const * pEntries = va_arg(*pParam, ContextEntry_Init const *);
+ sal_Int32 nEntries = va_arg(*pParam, sal_Int32);
+ XComponentContext * pDelegatee = va_arg(*pParam, XComponentContext *);
+ void ** ppContext = va_arg(*pParam, void **);
+ uno::Mapping * pTarget2curr = va_arg(*pParam, uno::Mapping *);
Reference<XComponentContext> xDelegate(pDelegatee, SAL_NO_ACQUIRE);
Reference<XComponentContext> xContext;