summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-04-27 21:46:38 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-04-28 08:07:16 +0200
commit7cfc983f8f3f4d094cd01128043d5e2021cb80c6 (patch)
tree49875dedd56c63029a749ff52a16f9dbdf2ec4e7 /cppu
parentcbe6c4929c9da28ce5553ce31782027d5111ed16 (diff)
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@redhat.com>
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/typelib/typelib.cxx4
1 files changed, 3 insertions, 1 deletions
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;
}
}