diff options
-rw-r--r-- | bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
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<XInterface *>( pCppI ) ); } |