diff options
author | Bastian Bense <bb@bense.de> | 2010-02-03 10:57:38 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2010-02-04 08:48:08 (GMT) |
commit | 19d49715211062303b801f2627c4ca13276db00f (patch) | |
tree | c9ba02419ad83e6573130346bfdfe976ad2c7485 | |
parent | 73c631c3980b95f4c991062ea0505ed5a3a69847 (diff) | |
download | Qt-19d49715211062303b801f2627c4ca13276db00f.zip Qt-19d49715211062303b801f2627c4ca13276db00f.tar.gz Qt-19d49715211062303b801f2627c4ca13276db00f.tar.bz2 |
Cleared up QEvent documentation for QGraphicsSceneDragDropEvent events.
Added the "(QGraphicsSceneDragDropEvent)" behind the documentation of
the QGraphicsSceneDrag*-type events. Without this hint it gives the
impression that you can't access the data being dragged within
eventFilter()s.
Task-number: QTBUG-7547
Reviewed-by: Benjamin Poulain <benjamin.poulain@nokia.com>
(cherry picked from commit 48d040b3536dbce06f54c90da489a5308bee3870)
-rw-r--r-- | src/corelib/kernel/qcoreevent.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/kernel/qcoreevent.cpp b/src/corelib/kernel/qcoreevent.cpp index 1780b35..622e14c 100644 --- a/src/corelib/kernel/qcoreevent.cpp +++ b/src/corelib/kernel/qcoreevent.cpp @@ -133,10 +133,10 @@ QT_BEGIN_NAMESPACE \value GrabKeyboard Item gains keyboard grab (QGraphicsItem only). \value GrabMouse Item gains mouse grab (QGraphicsItem only). \value GraphicsSceneContextMenu Context popup menu over a graphics scene (QGraphicsSceneContextMenuEvent). - \value GraphicsSceneDragEnter The cursor enters a graphics scene during a drag and drop operation. - \value GraphicsSceneDragLeave The cursor leaves a graphics scene during a drag and drop operation. - \value GraphicsSceneDragMove A drag and drop operation is in progress over a scene. - \value GraphicsSceneDrop A drag and drop operation is completed over a scene. + \value GraphicsSceneDragEnter The cursor enters a graphics scene during a drag and drop operation (QGraphicsSceneDragDropEvent). + \value GraphicsSceneDragLeave The cursor leaves a graphics scene during a drag and drop operation (QGraphicsSceneDragDropEvent). + \value GraphicsSceneDragMove A drag and drop operation is in progress over a scene (QGraphicsSceneDragDropEvent). + \value GraphicsSceneDrop A drag and drop operation is completed over a scene (QGraphicsSceneDragDropEvent). \value GraphicsSceneHelp The user requests help for a graphics scene (QHelpEvent). \value GraphicsSceneHoverEnter The mouse cursor enters a hover item in a graphics scene (QGraphicsSceneHoverEvent). \value GraphicsSceneHoverLeave The mouse cursor leaves a hover item in a graphics scene (QGraphicsSceneHoverEvent). |