diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-10-19 14:14:13 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-10-20 12:17:53 (GMT) |
commit | 4e22238ac86eb7ddb88b7dec73d419767da72323 (patch) | |
tree | f511eee58e18c3aed044ee4390c615127cca7f85 /src/gui/kernel/qapplication_win.cpp | |
parent | 31f1ff91028dd7f90925d5b3737e4d88b5fb07aa (diff) | |
download | Qt-4e22238ac86eb7ddb88b7dec73d419767da72323.zip Qt-4e22238ac86eb7ddb88b7dec73d419767da72323.tar.gz Qt-4e22238ac86eb7ddb88b7dec73d419767da72323.tar.bz2 |
Remove workarounds for Win32 event dispatcher bugs
This includes the startstop timer delay in QAbstractAnimation, and the
inSizeMove workaround for paint events.
Reviewed-by: Prasanth Ullattil
Diffstat (limited to 'src/gui/kernel/qapplication_win.cpp')
-rw-r--r-- | src/gui/kernel/qapplication_win.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gui/kernel/qapplication_win.cpp b/src/gui/kernel/qapplication_win.cpp index 5bb25fa..522f1ac 100644 --- a/src/gui/kernel/qapplication_win.cpp +++ b/src/gui/kernel/qapplication_win.cpp @@ -1916,11 +1916,9 @@ LRESULT CALLBACK QtWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam #ifndef Q_WS_WINCE case WM_ENTERSIZEMOVE: autoCaptureWnd = hwnd; - QApplicationPrivate::inSizeMove = true; break; case WM_EXITSIZEMOVE: autoCaptureWnd = 0; - QApplicationPrivate::inSizeMove = false; break; #endif case WM_MOVE: // move window |