summaryrefslogtreecommitdiffstats
path: root/src/widgets/itemviews/qabstractitemdelegate.cpp
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@nokia.com>2012-08-21 11:05:33 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-21 13:41:01 +0200
commited4389b055bd2a3b735fc846a27091b29e72a398 (patch)
tree110d55ec272a83f4da9cf9f0c643285958692a6e /src/widgets/itemviews/qabstractitemdelegate.cpp
parent2dc3181bdcc0d447d2bec42fa3b7cbecb640a51a (diff)
Minor documentation fixes in item views.
Change-Id: I986662ba48840e0195f0cfd4264e4d5d8b186c51 Reviewed-by: Jan-Arve Sæther <jan-arve.saether@nokia.com>
Diffstat (limited to 'src/widgets/itemviews/qabstractitemdelegate.cpp')
-rw-r--r--src/widgets/itemviews/qabstractitemdelegate.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/widgets/itemviews/qabstractitemdelegate.cpp b/src/widgets/itemviews/qabstractitemdelegate.cpp
index 6c02147c1d..e943edf5d1 100644
--- a/src/widgets/itemviews/qabstractitemdelegate.cpp
+++ b/src/widgets/itemviews/qabstractitemdelegate.cpp
@@ -243,12 +243,12 @@ QWidget *QAbstractItemDelegate::createEditor(QWidget *,
/*!
- \since 5.0
-
- A function called when the \a editor is no longer needed for \a index and should be
- destroyed. The default behavior is a call to deleteLater on the editor.
- It possible e.g. to avoid this delete by reimplementing this function.
+ Called when the \a editor is no longer needed for editing the data item
+ with the given \a index and should be destroyed. The default behavior is a
+ call to deleteLater on the editor. It is possible e.g. to avoid this delete by
+ reimplementing this function.
+ \since 5.0
\sa createEditor()
*/
void QAbstractItemDelegate::destroyEditor(QWidget *editor, const QModelIndex &index) const