diff options
author | Denis Dzyubenko <denis.dzyubenko@nokia.com> | 2009-08-03 16:24:44 (GMT) |
---|---|---|
committer | Denis Dzyubenko <denis.dzyubenko@nokia.com> | 2009-08-04 14:22:45 (GMT) |
commit | 6e7a6478279a94a82af46e6814f113244aca46dd (patch) | |
tree | abd54ce05996b2377fa78b3b895446f85ab15e90 /src/gui/kernel/qapplication_win.cpp | |
parent | fbee62af06ebe2c8cf6da1cc18a665c69c64eff7 (diff) | |
download | Qt-6e7a6478279a94a82af46e6814f113244aca46dd.zip Qt-6e7a6478279a94a82af46e6814f113244aca46dd.tar.gz Qt-6e7a6478279a94a82af46e6814f113244aca46dd.tar.bz2 |
Moved the native window gesture handling code to the right place.
Diffstat (limited to 'src/gui/kernel/qapplication_win.cpp')
-rw-r--r-- | src/gui/kernel/qapplication_win.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qapplication_win.cpp b/src/gui/kernel/qapplication_win.cpp index 3b5c0c3..2bded5c 100644 --- a/src/gui/kernel/qapplication_win.cpp +++ b/src/gui/kernel/qapplication_win.cpp @@ -3741,7 +3741,7 @@ bool QETWidget::translateGestureEvent(const MSG &msg) if (bResult) { switch (gi.dwID) { case GID_BEGIN: - // we are not interested in this type of event. + event.gestureType = QNativeGestureEvent::GestureBegin; break; case GID_END: event.gestureType = QNativeGestureEvent::GestureEnd; |