summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@nokia.com>2012-07-27 10:48:48 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-28 04:32:07 +0200
commit10cd17d0d3f373842e9fc9f1045a320f6140a963 (patch)
tree14afc4d40c49f25fa3f21d2d0736b8b7cb8b58cb /src/corelib
parente2f40da2578278da766038a6e7e5780e350191f2 (diff)
Document QEvent::EnterEditFocus and QEvent::LeaveEditFocus properly.
These enums are only accessible if QT_KEYPAD_NAVIGATION is defined. Task-number: QTBUG-15631 Change-Id: Ifa826ac8f2bf28225572e0c664f18ffa5e78c302 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/kernel/qcoreevent.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/kernel/qcoreevent.cpp b/src/corelib/kernel/qcoreevent.cpp
index fd81e42c74..3d59865e36 100644
--- a/src/corelib/kernel/qcoreevent.cpp
+++ b/src/corelib/kernel/qcoreevent.cpp
@@ -120,7 +120,7 @@ QT_BEGIN_NAMESPACE
\value Drop A drag and drop operation is completed (QDropEvent).
\value EnabledChange Widget's enabled state has changed.
\value Enter Mouse enters widget's boundaries.
- \value EnterEditFocus An editor widget gains focus for editing.
+ \value EnterEditFocus An editor widget gains focus for editing. QT_KEYPAD_NAVIGATION must be defined.
\value EnterWhatsThisMode Send to toplevel widgets when the application enters "What's This?" mode.
\value Expose Sent to a window when its on-screen contents are invalidated and need to be flushed from the backing store.
\value FileOpen File open request (QFileOpenEvent).
@@ -159,7 +159,7 @@ QT_BEGIN_NAMESPACE
\value LayoutDirectionChange The direction of layouts changed.
\value LayoutRequest Widget layout needs to be redone.
\value Leave Mouse leaves widget's boundaries.
- \value LeaveEditFocus An editor widget loses focus for editing.
+ \value LeaveEditFocus An editor widget loses focus for editing. QT_KEYPAD_NAVIGATION must be defined.
\value LeaveWhatsThisMode Send to toplevel widgets when the application leaves "What's This?" mode.
\value LocaleChange The system locale has changed.
\value NonClientAreaMouseButtonDblClick A mouse double click occurred outside the client area.