bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit 9776af8215093f3d67cbfe58c87c8decd54b01d8 Author: David Ostrovsky <[email protected]> Date: Sun Nov 30 12:30:05 2014 +0100 except.cxx: Fix pTypeDescr is unknown in this context error Change-Id: Ic47f69b01cf17a55901e9e3541419d9f477d9585 Reviewed-on: https://gerrit.libreoffice.org/13210 Tested-by: David Ostrovsky <[email protected]> Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx b/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx index abea68d..1cd29f7 100644 --- a/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx +++ b/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx @@ -243,13 +243,13 @@ extern "C" typelib_TypeClass cpp_vtable_call( { SAL_WARN( "bridges", - "illegal " << OUString::unacquired(&pTypeDescr->aBase.pTypeName) + "illegal " << OUString::unacquired(&pTD->aBase.pTypeName) << " vtable index " << nFunctionIndex << "/" - << pTypeDescr->nMapFunctionIndexToMemberIndex); + << pTD->nMapFunctionIndexToMemberIndex); throw RuntimeException( - ("illegal " + OUString::unacquired(&pTypeDescr->aBase.pTypeName) + ("illegal " + OUString::unacquired(&pTD->aBase.pTypeName) + " vtable index " + OUString::number(nFunctionIndex) + "/" - + OUString::number(pTypeDescr->nMapFunctionIndexToMemberIndex)), + + OUString::number(pTD->nMapFunctionIndexToMemberIndex)), reinterpret_cast<XInterface *>( pCppI ) ); } _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
