[Libreoffice-commits] core.git: bridges/source

Stephan Bergmann sbergman at redhat.com
Tue May 15 07:44:25 UTC 2018


 bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 8e8c4da18858bdc446f6a471858e2e77588d1e53
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue May 15 08:24:18 2018 +0200

    loplugin:stringconcat, loplugin:sallogareas (clang-cl)
    
    ("bridges.win64" isn't more useful than plain "bridges" here, as each platform
    uses only one bridges/source/cpp_uno/ sub-dir, anyway)
    
    Change-Id: Ic8c2af892cdfad98e10d43532b3bf3c892555446
    Reviewed-on: https://gerrit.libreoffice.org/54351
    Tested-by: Jenkins <ci at libreoffice.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 aa1020244d0b..216f261d6d55 100644
--- a/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx
+++ b/bridges/source/cpp_uno/msvc_win32_x86-64/cpp2uno.cxx
@@ -240,11 +240,11 @@ extern "C" typelib_TypeClass cpp_vtable_call(
 
     typelib_InterfaceTypeDescription * pTD = pCppI->getTypeDescr();
 
-    SAL_INFO( "bridges.win64", "cpp_vtable_call: pCallStack=[" <<
-            std::hex << pStack[0] << "," << pStack[1] << "," << pStack[2] << ",...]" <<
-            ", pThis=" << pThis << ", pCppI=" << pCppI <<
+    SAL_INFO( "bridges", "cpp_vtable_call: pCallStack=[" <<
+            std::hex << pStack[0] << "," << pStack[1] << "," << pStack[2] << ",...], pThis=" <<
+            pThis << ", pCppI=" << pCppI <<
             std::dec << ", nFunctionIndex=" << nFunctionIndex << ", nVtableOffset=" << nVtableOffset );
-    SAL_INFO( "bridges.win64", "name=" << OUString::unacquired(&pTD->aBase.pTypeName) );
+    SAL_INFO( "bridges", "name=" << OUString::unacquired(&pTD->aBase.pTypeName) );
 
     if ( nFunctionIndex >= pTD->nMapFunctionIndexToMemberIndex )
     {
@@ -266,7 +266,7 @@ extern "C" typelib_TypeClass cpp_vtable_call(
 
     TypeDescription aMemberDescr( pTD->ppAllMembers[nMemberPos] );
 
-    SAL_INFO( "bridges.win64", "Calling " << OUString::unacquired(&aMemberDescr.get()->pTypeName) );
+    SAL_INFO( "bridges", "Calling " << OUString::unacquired(&aMemberDescr.get()->pTypeName) );
 
     typelib_TypeClass eRet;
     switch ( aMemberDescr.get()->eTypeClass )


More information about the Libreoffice-commits mailing list