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

Stephan Bergmann (via logerrit) logerrit at kemper.freedesktop.org
Tue Apr 28 06:07:48 UTC 2020


 cppu/source/typelib/typelib.cxx |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 7cfc983f8f3f4d094cd01128043d5e2021cb80c6
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Mon Apr 27 21:46:38 2020 +0200
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Tue Apr 28 08:07:16 2020 +0200

    Fix printing rtl_uString*
    
    ...broken with ef513fd4b049b214a03fbe6e62a5ea43680a7a9b "remove unnecessary use
    of OString::getStr"
    
    Change-Id: I85f5ccb6c5114ea5e3eab43a3c1821292cf4e994
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92993
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx
index bbcd87b25638..d1a503e4265b 100644
--- a/cppu/source/typelib/typelib.cxx
+++ b/cppu/source/typelib/typelib.cxx
@@ -497,7 +497,9 @@ bool complete(typelib_TypeDescription ** ppTypeDescr, bool initTables) {
         }
         else
         {
-            SAL_INFO( "cppu.typelib", "type cannot be completed: " <<  (*ppTypeDescr)->pTypeName );
+            SAL_INFO(
+                "cppu.typelib",
+                "type cannot be completed: " << OUString::unacquired(&(*ppTypeDescr)->pTypeName));
             return false;
         }
     }


More information about the Libreoffice-commits mailing list