From 0bdcf79896a90ba6fa75f90c224c99734f3ea685 Mon Sep 17 00:00:00 2001 From: Debian Qt/KDE Maintainers Date: Sun, 14 Jul 2019 11:19:27 +0100 Subject: [PATCH] no_libicu_message Gbp-Pq: Name no_libicu_message.diff --- src/corelib/tools/qlocale_icu.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/corelib/tools/qlocale_icu.cpp b/src/corelib/tools/qlocale_icu.cpp index 0b2ac2c8f..9447870f2 100644 --- a/src/corelib/tools/qlocale_icu.cpp +++ b/src/corelib/tools/qlocale_icu.cpp @@ -88,7 +88,9 @@ bool qt_initIcu(const QString &localeString) QLibrary lib(QLatin1String("icui18n"), QLatin1String(U_ICU_VERSION_SHORT)); lib.setLoadHints(QLibrary::ImprovedSearchHeuristics); if (!lib.load()) { +#if 0 qWarning() << "Unable to load library icui18n" << lib.errorString(); +#endif status = ErrorLoading; return false; } @@ -118,7 +120,9 @@ bool qt_initIcu(const QString &localeString) QLibrary ucLib(QLatin1String("icuuc"), QLatin1String(U_ICU_VERSION_SHORT)); ucLib.setLoadHints(QLibrary::ImprovedSearchHeuristics); if (!ucLib.load()) { +#if 0 qWarning() << "Unable to load library icuuc" << ucLib.errorString(); +#endif status = ErrorLoading; return false; } -- 2.30.2