diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-10-14 10:51:53 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-10-14 10:52:04 (GMT) |
commit | 0c67ec35972d5e4b7e4807c7652cc4e97c4e33be (patch) | |
tree | 4bff8b2f059b2d9d187e23b4ceacda75c74c624f /src/corelib/kernel | |
parent | 09afb304b21be21864036d39522d4418fe243b0b (diff) | |
parent | 9d58da36c9790e60aead8de4477c80332d3e0a62 (diff) | |
download | Qt-0c67ec35972d5e4b7e4807c7652cc4e97c4e33be.zip Qt-0c67ec35972d5e4b7e4807c7652cc4e97c4e33be.tar.gz Qt-0c67ec35972d5e4b7e4807c7652cc4e97c4e33be.tar.bz2 |
Merge origin/4.6 into team-widgets/4.6
Diffstat (limited to 'src/corelib/kernel')
-rw-r--r-- | src/corelib/kernel/qeventdispatcher_symbian.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/kernel/qeventdispatcher_symbian.cpp b/src/corelib/kernel/qeventdispatcher_symbian.cpp index acbb7e4..02f77a1 100644 --- a/src/corelib/kernel/qeventdispatcher_symbian.cpp +++ b/src/corelib/kernel/qeventdispatcher_symbian.cpp @@ -749,11 +749,11 @@ bool QEventDispatcherSymbian::processEvents ( QEventLoop::ProcessEventsFlags fla block = false; if (timeState == TimeStarted && time.elapsed() > 100) { priority = m_processHandle.Priority(); - m_processHandle.SetPriority(EPriorityLow); + m_processHandle.SetPriority(EPriorityBackground); time.start(); // Slight chance of race condition in the next lines, but nothing fatal // will happen, just wrong priority. - if (m_processHandle.Priority() == EPriorityLow) { + if (m_processHandle.Priority() == EPriorityBackground) { m_processHandle.SetPriority(priority); } } |