diff options
author | Janne Koskinen <janne.p.koskinen@digia.com> | 2009-06-12 12:09:37 (GMT) |
---|---|---|
committer | Janne Koskinen <janne.p.koskinen@digia.com> | 2009-06-12 12:09:37 (GMT) |
commit | 2a7d22330226c0a1ef6bb5c35f07241a05429913 (patch) | |
tree | 0d9adf3074fbbd7ebe275a44f33ef4ceadb47b49 /src | |
parent | 97b5a40c5228aff51f7ce63c243bedcf1fc82452 (diff) | |
download | Qt-2a7d22330226c0a1ef6bb5c35f07241a05429913.zip Qt-2a7d22330226c0a1ef6bb5c35f07241a05429913.tar.gz Qt-2a7d22330226c0a1ef6bb5c35f07241a05429913.tar.bz2 |
bug fix for doubleclick event for symbian
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/kernel/qapplication_s60.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qapplication_s60.cpp b/src/gui/kernel/qapplication_s60.cpp index 1347c06..4c008fb 100644 --- a/src/gui/kernel/qapplication_s60.cpp +++ b/src/gui/kernel/qapplication_s60.cpp @@ -392,7 +392,7 @@ void QSymbianControl::HandlePointerEventL(const TPointerEvent& pEvent) alienWidget = S60->mousePressTarget; if (alienWidget != S60->lastPointerEventTarget) - if (type == QEvent::MouseButtonPress || QEvent::MouseButtonDblClick || type == QEvent::MouseMove) + if (type == QEvent::MouseButtonPress || type == QEvent::MouseButtonDblClick || type == QEvent::MouseMove) { //moved to another widget, create enter and leave events if (S60->lastPointerEventTarget) |