diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 22:44:19 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 22:44:19 +0000 |
commit | 64e5c3e0980dd9c19130ddf9e32d80c7d9bc086c (patch) | |
tree | 702e6c10cf60227d199e66048ddf102f445ee728 /bridges | |
parent | 759b43d3622cd9708941b6c9506029040bc94193 (diff) |
INTEGRATION: CWS warnings01 (1.4.94); FILE MERGED
2005/09/22 18:21:44 sb 1.4.94.2: RESYNC: (1.4-1.5); FILE MERGED
2005/09/09 12:37:36 sb 1.4.94.1: #i53898# Made code warning-free.
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_macosx_powerpc/uno2cpp.cxx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/bridges/source/cpp_uno/gcc3_macosx_powerpc/uno2cpp.cxx b/bridges/source/cpp_uno/gcc3_macosx_powerpc/uno2cpp.cxx index 7d296a0c1f45..00746db1d729 100644 --- a/bridges/source/cpp_uno/gcc3_macosx_powerpc/uno2cpp.cxx +++ b/bridges/source/cpp_uno/gcc3_macosx_powerpc/uno2cpp.cxx @@ -4,9 +4,9 @@ * * $RCSfile: uno2cpp.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-07 22:28:29 $ + * last change: $Author: hr $ $Date: 2006-06-19 23:44:19 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -504,10 +504,11 @@ 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 @@ -628,3 +629,4 @@ void bridges::cpp_uno::shared::UnoInterfaceProxy::dispatch( } } +} } } |