[Libreoffice-commits] core.git: bridges/source
David Ostrovsky
david at ostrovsky.org
Tue Dec 2 06:51:14 PST 2014
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 <david at ostrovsky.org>
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 <david at ostrovsky.org>
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
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 ) );
}
More information about the Libreoffice-commits
mailing list