aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickdroparea.cpp
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@digia.com>2014-02-28 09:13:58 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-28 12:01:35 +0100
commit0a23e840e27964fad75e8b0ef7b31701c51f93d5 (patch)
tree2c136047430e9811bc6d264a336e87355d1a80b2 /src/quick/items/qquickdroparea.cpp
parentec03673000a52069699a8a784ae8219f174aa3c2 (diff)
Tidy up DropArea documentation.
The delegate property was removed because it doesn't exist. Change-Id: I010880773629868f3c640c0a4ed34f132454d2f7 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/quick/items/qquickdroparea.cpp')
-rw-r--r--src/quick/items/qquickdroparea.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/quick/items/qquickdroparea.cpp b/src/quick/items/qquickdroparea.cpp
index 8d58ffbfae..57e500a150 100644
--- a/src/quick/items/qquickdroparea.cpp
+++ b/src/quick/items/qquickdroparea.cpp
@@ -109,9 +109,6 @@ QQuickDropAreaPrivate::~QQuickDropAreaPrivate()
The \l drag.source property is communicated to the source of a drag event as
the recipient of a drop on the drag target.
-
- The \l delegate property provides a means to specify a component to be
- instantiated for each active drag over a drag target.
*/
QQuickDropArea::QQuickDropArea(QQuickItem *parent)
@@ -308,7 +305,7 @@ void QQuickDropArea::dragLeaveEvent(QDragLeaveEvent *)
/*!
\qmlsignal QtQuick::DropArea::onDropped(DragEvent drop)
- This handler is called when a drop event occurs within the bounds of a
+ This handler is called when a drop event occurs within the bounds of
a DropArea.
*/
@@ -383,8 +380,8 @@ void QQuickDropArea::dropEvent(QDropEvent *event)
The drop action may be one of:
\list
- \li Qt.CopyAction Copy the data to the target
- \li Qt.MoveAction Move the data from the source to the target
+ \li Qt.CopyAction Copy the data to the target.
+ \li Qt.MoveAction Move the data from the source to the target.
\li Qt.LinkAction Create a link from the source to the target.
\li Qt.IgnoreAction Ignore the action (do nothing with the data).
\endlist