Blame SOURCES/qt-everywhere-opensource-src-4.8.5-qgtkstyle_disable_gtk_theme_check.patch

2060a3
diff -up qt-everywhere-opensource-src-4.8.5/src/gui/styles/qgtkstyle_p.cpp.qgtkstyle_disable_gtk_theme_check qt-everywhere-opensource-src-4.8.5/src/gui/styles/qgtkstyle_p.cpp
2060a3
--- qt-everywhere-opensource-src-4.8.5/src/gui/styles/qgtkstyle_p.cpp.qgtkstyle_disable_gtk_theme_check	2013-06-09 16:28:22.938840346 -0500
2060a3
+++ qt-everywhere-opensource-src-4.8.5/src/gui/styles/qgtkstyle_p.cpp	2013-06-09 17:03:01.781125479 -0500
2060a3
@@ -503,18 +503,6 @@ void QGtkStylePrivate::initGtkWidgets()
2060a3
         return;
2060a3
     }
2060a3
 
2060a3
-    static QString themeName;
2060a3
-    if (!gtkWidgetMap()->contains("GtkWindow") && themeName.isEmpty()) {
2060a3
-        themeName = getThemeName();
2060a3
-
2060a3
-        if (themeName == QLS("Qt") || themeName == QLS("Qt4")) {
2060a3
-            // Due to namespace conflicts with Qt3 and obvious recursion with Qt4,
2060a3
-            // we cannot support the GTK_Qt Gtk engine
2060a3
-            qWarning("QGtkStyle cannot be used together with the GTK_Qt engine.");
2060a3
-            return;
2060a3
-        }
2060a3
-    }
2060a3
-
2060a3
     if (QGtkStylePrivate::gtk_init) {
2060a3
         // Gtk will set the Qt error handler so we have to reset it afterwards
2060a3
         x11ErrorHandler qt_x_errhandler = XSetErrorHandler(0);