24 lines
1.1 KiB
Diff
24 lines
1.1 KiB
Diff
|
diff -up qt-everywhere-opensource-src-4.8.1/src/corelib/tools/qlocale_icu.cpp.icu_no_spam qt-everywhere-opensource-src-4.8.1/src/corelib/tools/qlocale_icu.cpp
|
||
|
--- qt-everywhere-opensource-src-4.8.1/src/corelib/tools/qlocale_icu.cpp.icu_no_spam 2012-03-14 09:01:17.000000000 -0500
|
||
|
+++ qt-everywhere-opensource-src-4.8.1/src/corelib/tools/qlocale_icu.cpp 2012-04-17 07:30:01.652251482 -0500
|
||
|
@@ -83,7 +83,9 @@ bool qt_initIcu(const QString &localeStr
|
||
|
// resolve libicui18n
|
||
|
QLibrary lib(QLatin1String("icui18n"), QLatin1String(U_ICU_VERSION_SHORT));
|
||
|
if (!lib.load()) {
|
||
|
+#ifndef QT_NO_DEBUG
|
||
|
qWarning() << "Unable to load library icui18n" << lib.errorString();
|
||
|
+#endif
|
||
|
status = ErrorLoading;
|
||
|
return false;
|
||
|
}
|
||
|
@@ -112,7 +114,9 @@ bool qt_initIcu(const QString &localeStr
|
||
|
// resolve libicuuc
|
||
|
QLibrary ucLib(QLatin1String("icuuc"), QLatin1String(U_ICU_VERSION_SHORT));
|
||
|
if (!ucLib.load()) {
|
||
|
+#ifndef QT_NO_DEBUG
|
||
|
qWarning() << "Unable to load library icuuc" << ucLib.errorString();
|
||
|
+#endif
|
||
|
status = ErrorLoading;
|
||
|
return false;
|
||
|
}
|