087ab1f
diff -up qt-everywhere-opensource-src-4.8.3/src/corelib/tools/qlocale_icu.cpp.icu_no_debug qt-everywhere-opensource-src-4.8.3/src/corelib/tools/qlocale_icu.cpp
087ab1f
--- qt-everywhere-opensource-src-4.8.3/src/corelib/tools/qlocale_icu.cpp.icu_no_debug	2012-09-06 02:33:45.000000000 -0500
087ab1f
+++ qt-everywhere-opensource-src-4.8.3/src/corelib/tools/qlocale_icu.cpp	2012-09-11 09:04:21.542379795 -0500
087ab1f
@@ -84,7 +84,9 @@ bool qt_initIcu(const QString &localeStr
6ede3a7
         QLibrary lib(QLatin1String("icui18n"), QLatin1String(U_ICU_VERSION_SHORT));
087ab1f
         lib.setLoadHints(QLibrary::ImprovedSearchHeuristics);
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
         }
087ab1f
@@ -114,7 +116,9 @@ bool qt_initIcu(const QString &localeStr
6ede3a7
         QLibrary ucLib(QLatin1String("icuuc"), QLatin1String(U_ICU_VERSION_SHORT));
087ab1f
         ucLib.setLoadHints(QLibrary::ImprovedSearchHeuristics);
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
         }