Blame SOURCES/qt-everywhere-opensource-src-4.8.3-icu_no_debug.patch

2060a3
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
2060a3
--- qt-everywhere-opensource-src-4.8.3/src/corelib/tools/qlocale_icu.cpp.icu_no_debug	2012-09-06 02:33:45.000000000 -0500
2060a3
+++ qt-everywhere-opensource-src-4.8.3/src/corelib/tools/qlocale_icu.cpp	2012-09-11 09:04:21.542379795 -0500
2060a3
@@ -84,7 +84,9 @@ bool qt_initIcu(const QString &localeStr
2060a3
         QLibrary lib(QLatin1String("icui18n"), QLatin1String(U_ICU_VERSION_SHORT));
2060a3
         lib.setLoadHints(QLibrary::ImprovedSearchHeuristics);
2060a3
         if (!lib.load()) {
2060a3
+#ifndef QT_NO_DEBUG
2060a3
             qWarning() << "Unable to load library icui18n" << lib.errorString();
2060a3
+#endif
2060a3
             status = ErrorLoading;
2060a3
             return false;
2060a3
         }
2060a3
@@ -114,7 +116,9 @@ bool qt_initIcu(const QString &localeStr
2060a3
         QLibrary ucLib(QLatin1String("icuuc"), QLatin1String(U_ICU_VERSION_SHORT));
2060a3
         ucLib.setLoadHints(QLibrary::ImprovedSearchHeuristics);
2060a3
         if (!ucLib.load()) {
2060a3
+#ifndef QT_NO_DEBUG
2060a3
             qWarning() << "Unable to load library icuuc" << ucLib.errorString();
2060a3
+#endif
2060a3
             status = ErrorLoading;
2060a3
             return false;
2060a3
         }