diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-01-28 13:50:17 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-01-28 13:50:37 +0100 |
commit | 4e3da621fe26c2ad85258692c63a044d0541bd64 (patch) | |
tree | 05607d0de471c5d9451b197945243f735ee168b0 /bridges | |
parent | 4b60941b60262be4861f5e8fba95366d3187c445 (diff) |
Some more loplugin:cstylecast clean-up
Change-Id: I132d22e2af3cf673c17d8964f690d48990834884
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx | 4 | ||||
-rw-r--r-- | bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx | 2 | ||||
-rw-r--r-- | bridges/source/jni_uno/jni_java2uno.cxx | 2 | ||||
-rw-r--r-- | bridges/source/jni_uno/jni_uno2java.cxx | 8 |
4 files changed, 8 insertions, 8 deletions
diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx b/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx index 767a7fe9c0af..ef6cdec8e700 100644 --- a/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx @@ -237,7 +237,7 @@ static typelib_TypeClass cpp2uno_call( uno_destructData( pUnoReturn, pReturnTypeDescr, 0 ); } // complex return ptr is set to return reg - *(void **)pRegisterReturn = pCppReturn; + *reinterpret_cast<void **>(pRegisterReturn) = pCppReturn; } if ( pReturnTypeDescr ) { @@ -348,7 +348,7 @@ typelib_TypeClass cpp_vtable_call( XInterface * pInterface = 0; (*pCppI->getBridge()->getCppEnv()->getRegisteredInterface) ( pCppI->getBridge()->getCppEnv(), - (void **)&pInterface, + reinterpret_cast<void **>(&pInterface), pCppI->getOid().pData, reinterpret_cast<typelib_InterfaceTypeDescription *>( pTD ) ); diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx b/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx index 12cc9335c02f..fb286db7943f 100644 --- a/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/uno2cpp.cxx @@ -404,7 +404,7 @@ void unoInterfaceProxyDispatch( uno_Interface * pInterface = 0; (*pThis->getBridge()->getUnoEnv()->getRegisteredInterface)( pThis->getBridge()->getUnoEnv(), - (void **)&pInterface, pThis->oid.pData, reinterpret_cast<typelib_InterfaceTypeDescription *>(pTD) ); + reinterpret_cast<void **>(&pInterface), pThis->oid.pData, reinterpret_cast<typelib_InterfaceTypeDescription *>(pTD) ); if (pInterface) { diff --git a/bridges/source/jni_uno/jni_java2uno.cxx b/bridges/source/jni_uno/jni_java2uno.cxx index b827a1e07b6a..5c992f167cbb 100644 --- a/bridges/source/jni_uno/jni_java2uno.cxx +++ b/bridges/source/jni_uno/jni_java2uno.cxx @@ -186,7 +186,7 @@ jobject Bridge::call_uno( #endif (nParams * sizeof (void *)) + return_size + (nParams * sizeof (largest)) ); - void ** uno_args = (void **) mem; + void ** uno_args = reinterpret_cast<void **>(mem); void * uno_ret = return_size == 0 ? 0 : (mem + (nParams * sizeof (void *))); largest * uno_args_mem = reinterpret_cast<largest *> (mem + (nParams * sizeof (void *)) + return_size); diff --git a/bridges/source/jni_uno/jni_uno2java.cxx b/bridges/source/jni_uno/jni_uno2java.cxx index c36e8a12e9b8..a9798e333299 100644 --- a/bridges/source/jni_uno/jni_uno2java.cxx +++ b/bridges/source/jni_uno/jni_uno2java.cxx @@ -489,7 +489,7 @@ uno_Interface * Bridge::map_to_uno( uno_Interface * pUnoI = 0; (*m_uno_env->getRegisteredInterface)( - m_uno_env, (void **)&pUnoI, + m_uno_env, reinterpret_cast<void **>(&pUnoI), oid.pData, reinterpret_cast<typelib_InterfaceTypeDescription *>(info->m_td.get()) ); if (0 == pUnoI) // no existing interface, register new proxy @@ -500,7 +500,7 @@ uno_Interface * Bridge::map_to_uno( javaI, static_cast<jstring>(jo_oid.get()), oid, info ); (*m_uno_env->registerProxyInterface)( - m_uno_env, (void **)&pUnoI, + m_uno_env, reinterpret_cast<void **>(&pUnoI), UNO_proxy_free, oid.pData, reinterpret_cast<typelib_InterfaceTypeDescription *>(info->m_td.get()) ); } @@ -667,7 +667,7 @@ void SAL_CALL UNO_proxy_dispatch( uno_Interface * pInterface = 0; (*bridge->m_uno_env->getRegisteredInterface)( bridge->m_uno_env, - (void **) &pInterface, that->m_oid.pData, + reinterpret_cast<void **>(&pInterface), that->m_oid.pData, reinterpret_cast<typelib_InterfaceTypeDescription *>(demanded_td.get()) ); if (0 == pInterface) @@ -719,7 +719,7 @@ void SAL_CALL UNO_proxy_dispatch( (*bridge->m_uno_env->registerProxyInterface)( bridge->m_uno_env, - (void **) &pUnoI2, + reinterpret_cast<void **>(&pUnoI2), UNO_proxy_free, that->m_oid.pData, reinterpret_cast< typelib_InterfaceTypeDescription * >( |