diff options
author | Dominik Kapusta <ayoy@gentoo.org> | 2009-10-29 18:44:04 +0000 |
---|---|---|
committer | Dominik Kapusta <ayoy@gentoo.org> | 2009-10-29 18:44:04 +0000 |
commit | 7dc135606bbd220333d7f05780b9f2ae13fbbd1b (patch) | |
tree | e738dd6cfd001f5f2db22a60c16536e9c50a4e1d /x11-libs/qt-gui/files | |
parent | Adding a patch to fix regression in event loop (diff) | |
download | gentoo-2-7dc135606bbd220333d7f05780b9f2ae13fbbd1b.tar.gz gentoo-2-7dc135606bbd220333d7f05780b9f2ae13fbbd1b.tar.bz2 gentoo-2-7dc135606bbd220333d7f05780b9f2ae13fbbd1b.zip |
Adding a patch to fix regression in event loop
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/qt-gui/files')
-rw-r--r-- | x11-libs/qt-gui/files/qt-4.5.3-glib-event-loop.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-libs/qt-gui/files/qt-4.5.3-glib-event-loop.patch b/x11-libs/qt-gui/files/qt-4.5.3-glib-event-loop.patch new file mode 100644 index 000000000000..580f027a5471 --- /dev/null +++ b/x11-libs/qt-gui/files/qt-4.5.3-glib-event-loop.patch @@ -0,0 +1,11 @@ +diff -up qt-x11-opensource-src-4.5.3/src/corelib/kernel/qeventdispatcher_glib.cpp.than qt-x11-opensource-src-4.5.3/src/corelib/kernel/qeventdispatcher_glib.cpp +--- qt-x11-opensource-src-4.5.3/src/corelib/kernel/qeventdispatcher_glib.cpp.than 2009-10-29 16:15:58.000000000 +0100 ++++ qt-x11-opensource-src-4.5.3/src/corelib/kernel/qeventdispatcher_glib.cpp 2009-10-29 16:16:22.000000000 +0100 +@@ -263,7 +263,6 @@ QEventDispatcherGlibPrivate::QEventDispa + (void) new (&timerSource->timerList) QTimerInfoList(); + timerSource->processEventsFlags = QEventLoop::AllEvents; + g_source_set_can_recurse(&timerSource->source, true); +- g_source_set_priority(&timerSource->source, G_PRIORITY_DEFAULT_IDLE); + g_source_attach(&timerSource->source, mainContext); + } + |