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