aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickdroparea.cpp
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2023-03-27 11:15:27 +0200
committerShawn Rutledge <shawn.rutledge@qt.io>2023-03-28 15:31:02 +0200
commit2a6151097e0dffc3722023b206c35d6535354096 (patch)
treeb89be6139cbb973ac192bdb946d9c0163d537331 /src/quick/items/qquickdroparea.cpp
parent7cb4ccef5233d1c3c515bffc177f5f33055c9357 (diff)
doc: Use \value rather than \li for enumeration values and constants
Pick-to: 6.2 6.5 Change-Id: Ica8354a53d0a5fb5dd1d8cd5f774dcdc56b6f99a Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'src/quick/items/qquickdroparea.cpp')
-rw-r--r--src/quick/items/qquickdroparea.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/quick/items/qquickdroparea.cpp b/src/quick/items/qquickdroparea.cpp
index 1c865a6327..76b6473df1 100644
--- a/src/quick/items/qquickdroparea.cpp
+++ b/src/quick/items/qquickdroparea.cpp
@@ -353,12 +353,10 @@ 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.LinkAction Create a link from the source to the target.
- \li Qt.IgnoreAction Ignore the action (do nothing with the data).
- \endlist
+ \value Qt.CopyAction Copy the data to the target.
+ \value Qt.MoveAction Move the data from the source to the target.
+ \value Qt.LinkAction Create a link from the source to the target.
+ \value Qt.IgnoreAction Ignore the action (do nothing with the data).
*/
/*!