From 9776af8215093f3d67cbfe58c87c8decd54b01d8 Mon Sep 17 00:00:00 2001 From: David Ostrovsky Date: Sun, 30 Nov 2014 12:30:05 +0100 Subject: except.cxx: Fix pTypeDescr is unknown in this context error Change-Id: Ic47f69b01cf17a55901e9e3541419d9f477d9585 Reviewed-on: https://gerrit.libreoffice.org/13210 Tested-by: David Ostrovsky Reviewed-by: Stephan Bergmann --- bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bridges/source') 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 abea68db423c..1cd29f70a6b7 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( pCppI ) ); } -- cgit