diff options
author | Maurice Kalinowski <maurice.kalinowski@nokia.com> | 2009-11-06 06:56:56 (GMT) |
---|---|---|
committer | Maurice Kalinowski <maurice.kalinowski@nokia.com> | 2009-11-06 06:56:56 (GMT) |
commit | 13cd3c7a8975fc6dc72719b5a78d55159ab777a3 (patch) | |
tree | 13025a20aa61a4e5b5ecd77343c0c9b62fe55b21 /src/corelib/kernel | |
parent | 164f2b1e013adcf829cdfac2875ab25109a7c578 (diff) | |
download | Qt-13cd3c7a8975fc6dc72719b5a78d55159ab777a3.zip Qt-13cd3c7a8975fc6dc72719b5a78d55159ab777a3.tar.gz Qt-13cd3c7a8975fc6dc72719b5a78d55159ab777a3.tar.bz2 |
fix painting on Windows CE
it seems the timer id ~0 is already used on windows ce or not available
at all. This has caused Qt to not receive the timer messages, causing
to not update.
Task-number: qtbug-5496
Reviewed-by: Gunnar Sletta
Diffstat (limited to 'src/corelib/kernel')
-rw-r--r-- | src/corelib/kernel/qeventdispatcher_win.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/kernel/qeventdispatcher_win.cpp b/src/corelib/kernel/qeventdispatcher_win.cpp index d13e1d1..bce52c6 100644 --- a/src/corelib/kernel/qeventdispatcher_win.cpp +++ b/src/corelib/kernel/qeventdispatcher_win.cpp @@ -470,7 +470,7 @@ LRESULT CALLBACK qt_internal_proc(HWND hwnd, UINT message, WPARAM wp, LPARAM lp) } return 0; } else if (message == WM_TIMER) { - if (wp == ~0u) { + if (wp == ~1u) { KillTimer(d->internalHwnd, wp); int localSerialNumber = d->serialNumber; (void) d->wakeUps.fetchAndStoreRelease(0); @@ -488,7 +488,7 @@ LRESULT CALLBACK qt_internal_proc(HWND hwnd, UINT message, WPARAM wp, LPARAM lp) if (GetQueueStatus(QS_INPUT | QS_RAWINPUT | QS_TIMER) != 0) { // delay the next pass of sendPostedEvents() until we get the special // WM_TIMER, which allows all pending Windows messages to be processed - SetTimer(d->internalHwnd, ~0u, 0, 0); + SetTimer(d->internalHwnd, ~1u, 0, 0); } else { // nothing pending in the queue, let sendPostedEvents go through d->wakeUps.fetchAndStoreRelease(0); |