summaryrefslogtreecommitdiff
path: root/bridges/source
diff options
context:
space:
mode:
authorDavid Ostrovsky <david@ostrovsky.org>2014-11-30 12:30:05 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-02 14:50:47 +0000
commit9776af8215093f3d67cbfe58c87c8decd54b01d8 (patch)
tree2282b53870d6dc231d145cb70e9a020c07ce9a3f /bridges/source
parent428bd61cd80b49c0e4ec1b2ee4b4b8870ebf9a35 (diff)
except.cxx: Fix pTypeDescr is unknown in this context error
Change-Id: Ic47f69b01cf17a55901e9e3541419d9f477d9585 Reviewed-on: https://gerrit.libreoffice.org/13210 Tested-by: David Ostrovsky <david@ostrovsky.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'bridges/source')
-rw-r--r--bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx8
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 ) );
}