INTEGRATION: CWS warnings01 (1.10.100); FILE MERGED

2006/02/28 15:00:33 sb 1.10.100.3: #i53898# Made code waring-free.
2005/09/22 18:26:30 sb 1.10.100.2: RESYNC: (1.10-1.11); FILE MERGED
2005/09/09 12:37:40 sb 1.10.100.1: #i53898# Made code warning-free.
This commit is contained in:
Jens-Heiner Rechtien
2006-06-19 22:45:18 +00:00
parent 8cd0aae271
commit f8bbf09f82

View File

@@ -4,9 +4,9 @@
*
* $RCSfile: uno2cpp.cxx,v $
*
* $Revision: 1.11 $
* $Revision: 1.12 $
*
* last change: $Author: rt $ $Date: 2005-09-07 22:33:28 $
* last change: $Author: hr $ $Date: 2006-06-19 23:45:18 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -219,6 +219,9 @@ static void cpp_call(
case typelib_TypeClass_UNSIGNED_HYPER:
case typelib_TypeClass_DOUBLE:
pCppStack += sizeof(sal_Int32); // extra long
break;
default:
break;
}
// no longer needed
TYPELIB_DANGER_RELEASE( pParamTypeDescr );
@@ -343,15 +346,15 @@ static void cpp_call(
}
//==================================================================================================
void bridges::cpp_uno::shared::UnoInterfaceProxy::dispatch(
namespace bridges { namespace cpp_uno { namespace shared {
void unoInterfaceProxyDispatch(
uno_Interface * pUnoI, const typelib_TypeDescription * pMemberDescr,
void * pReturn, void * pArgs[], uno_Any ** ppException ) SAL_THROW(())
void * pReturn, void * pArgs[], uno_Any ** ppException )
{
// is my surrogate
bridges::cpp_uno::shared::UnoInterfaceProxy * pThis
= static_cast< bridges::cpp_uno::shared::UnoInterfaceProxy * >(pUnoI);
typelib_InterfaceTypeDescription * pTypeDescr = pThis->pTypeDescr;
switch (pMemberDescr->eTypeClass)
{
@@ -463,3 +466,5 @@ void bridges::cpp_uno::shared::UnoInterfaceProxy::dispatch(
}
}
}
} } }