diff options
author | 2009-10-29 18:30:13 +0000 | |
---|---|---|
committer | 2009-10-29 18:30:13 +0000 | |
commit | 2874ed6bd25a25e3d8a2686a47bfff8e195df4b6 (patch) | |
tree | 27f17d9a1808922ce4685337bacb128612e190c6 /x11-libs/qt-test/files | |
parent | Proxy commit for chiiph, add him and myself to metadata.xml (diff) | |
download | historical-2874ed6bd25a25e3d8a2686a47bfff8e195df4b6.tar.gz historical-2874ed6bd25a25e3d8a2686a47bfff8e195df4b6.tar.bz2 historical-2874ed6bd25a25e3d8a2686a47bfff8e195df4b6.zip |
Adding a patch to fix regression in event loop
Package-Manager: portage-2.2_rc46/cvs/Linux x86_64
Diffstat (limited to 'x11-libs/qt-test/files')
-rw-r--r-- | x11-libs/qt-test/files/qt-4.5.3-glib-event-loop.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-libs/qt-test/files/qt-4.5.3-glib-event-loop.patch b/x11-libs/qt-test/files/qt-4.5.3-glib-event-loop.patch new file mode 100644 index 000000000000..580f027a5471 --- /dev/null +++ b/x11-libs/qt-test/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); + } + |