summaryrefslogtreecommitdiff
path: root/bridges/source/cpp_uno/msvc_shared/cpp2uno.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/source/cpp_uno/msvc_shared/cpp2uno.cxx')
-rw-r--r--bridges/source/cpp_uno/msvc_shared/cpp2uno.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/source/cpp_uno/msvc_shared/cpp2uno.cxx b/bridges/source/cpp_uno/msvc_shared/cpp2uno.cxx
index e114a1019df7..872cc079a984 100644
--- a/bridges/source/cpp_uno/msvc_shared/cpp2uno.cxx
+++ b/bridges/source/cpp_uno/msvc_shared/cpp2uno.cxx
@@ -247,7 +247,7 @@ typelib_TypeClass __cdecl cpp_mediate(void** pCallStack, const sal_Int32 nFuncti
+ " vtable index " + OUString::number(nFunctionIndex) + "/"
+ OUString::number(pInterfaceTD->nMapFunctionIndexToMemberIndex);
SAL_WARN("bridges", sError);
- throw uno::RuntimeException(sError, reinterpret_cast<uno::XInterface*>(pThis));
+ throw uno::RuntimeException(sError, static_cast<uno::XInterface*>(pThis));
}
// determine called method
@@ -345,7 +345,7 @@ typelib_TypeClass __cdecl cpp_mediate(void** pCallStack, const sal_Int32 nFuncti
}
default:
throw uno::RuntimeException("no member description found!",
- reinterpret_cast<uno::XInterface*>(pThis));
+ static_cast<uno::XInterface*>(pThis));
}
return eRet;