diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-09-04 09:43:29 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-09-04 09:45:58 (GMT) |
commit | 818ddd1409c3fb9fdb3ff3ff2f2f8c933c6f66cf (patch) | |
tree | c08869d7c6e55cc0a9e9d8ef565b8ca2396e58c0 /src/gui | |
parent | 16f9fc8ea2d9e30c1098c4435adc213d645b971f (diff) | |
download | Qt-818ddd1409c3fb9fdb3ff3ff2f2f8c933c6f66cf.zip Qt-818ddd1409c3fb9fdb3ff3ff2f2f8c933c6f66cf.tar.gz Qt-818ddd1409c3fb9fdb3ff3ff2f2f8c933c6f66cf.tar.bz2 |
Small corrections in the documentation
1. "is is" -> "it is"
2. remove excess use of the work "unexpected"
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/kernel/qevent.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/kernel/qevent.cpp b/src/gui/kernel/qevent.cpp index a61b6fa..0b282bc 100644 --- a/src/gui/kernel/qevent.cpp +++ b/src/gui/kernel/qevent.cpp @@ -3648,13 +3648,13 @@ QMenubarUpdatedEvent::QMenubarUpdatedEvent(QMenuBar * const menuBar) \i As mentioned above, enabling touch events means multiple widgets can be receiving touch events simultaneously. Combined with the default QWidget::event() handling for QTouchEvents, this gives you great flexibility in designing multi-touch user interfaces. Be aware of the - implications. For example, is is possible that the user is moving a QSlider with one finger and + implications. For example, it is possible that the user is moving a QSlider with one finger and pressing a QPushButton with another. The signals emitted by these widgets will be interleaved. \i Recursion into the event loop using one of the exec() methods (e.g., QDialog::exec() or QMenu::exec()) in a QTouchEvent event handler is not supported. Since there are multiple event - recipients, unexpected recursion may cause problems, including but not limited to lost events + recipients, recursion may cause problems, including but not limited to lost events and unexpected infinite recursion. \i QTouchEvents are not affected by a \l{QWidget::grabMouse()}{mouse grab} or an |