summaryrefslogtreecommitdiff
path: root/libraries/qt4/patches/qt-everywhere-opensource-src-4.8.3-qdbusconnection_no_debug.patch
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2022-01-24 16:45:06 -0500
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-01-25 14:44:36 +0700
commited95dbc32bb571fe7021dfebf763e1425211103c (patch)
tree94e530cdea603177e959437d33491a0493527077 /libraries/qt4/patches/qt-everywhere-opensource-src-4.8.3-qdbusconnection_no_debug.patch
parent599e1f6f578276d8eedeed8d6ed51217064d40fb (diff)
downloadslackbuilds-ed95dbc32bb571fe7021dfebf763e1425211103c.tar.gz
libraries/qt4: Added (legacy Qt version).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/qt4/patches/qt-everywhere-opensource-src-4.8.3-qdbusconnection_no_debug.patch')
-rw-r--r--libraries/qt4/patches/qt-everywhere-opensource-src-4.8.3-qdbusconnection_no_debug.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/libraries/qt4/patches/qt-everywhere-opensource-src-4.8.3-qdbusconnection_no_debug.patch b/libraries/qt4/patches/qt-everywhere-opensource-src-4.8.3-qdbusconnection_no_debug.patch
new file mode 100644
index 0000000000..dd3a5a0229
--- /dev/null
+++ b/libraries/qt4/patches/qt-everywhere-opensource-src-4.8.3-qdbusconnection_no_debug.patch
@@ -0,0 +1,14 @@
+diff -up qt-everywhere-opensource-src-4.8.3/src/dbus/qdbusconnection.cpp.qdbusconnection_no_debug.patch qt-everywhere-opensource-src-4.8.3/src/dbus/qdbusconnection.cpp
+--- qt-everywhere-opensource-src-4.8.3/src/dbus/qdbusconnection.cpp.qdbusconnection_no_debug.patch 2012-09-06 02:33:44.000000000 -0500
++++ qt-everywhere-opensource-src-4.8.3/src/dbus/qdbusconnection.cpp 2012-09-11 08:55:29.854026815 -0500
+@@ -1109,8 +1109,10 @@ public:
+ // make sure this connection is running on the main thread
+ QCoreApplication *instance = QCoreApplication::instance();
+ if (!instance) {
++#ifndef QT_NO_DEBUG
+ qWarning("QDBusConnection: %s D-Bus connection created before QCoreApplication. Application may misbehave.",
+ type == SessionBus ? "session" : type == SystemBus ? "system" : "generic");
++#endif
+ } else if (QDBusConnectionPrivate::d(*this)) {
+ QDBusConnectionPrivate::d(*this)->moveToThread(instance->thread());
+ }