Remove the two default role names listed in cppmodels documentation.
authorMitch Curtis <mitch.curtis@digia.com>
Wed, 15 Jan 2014 07:54:04 +0000 (08:54 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Thu, 16 Jan 2014 08:11:27 +0000 (09:11 +0100)
The list is incomplete, and they are now fully documented under
QAbstractItemModel::roleNames(). This saves us maintaining two lists
that can easily get out of sync.

Change-Id: I4895a8ba19a4f48c26b4077e8bf2eba8c4c8407c
Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
src/quick/doc/src/concepts/modelviewsdata/cppmodels.qdoc

index abef6b765b46ccc82feb643da892229cd70d4fff..f1e13e127ca5f5766be50a380c441a7dd7955f29 100644 (file)
@@ -110,20 +110,7 @@ by the other approaches. A QAbstractItemModel can also automatically
 notify a QML view when the model data changes.
 
 The roles of a QAbstractItemModel subclass can be exposed to QML by
-reimplementing QAbstractItemModel::roleNames(). The default role names
-set by Qt are:
-
-\table
-\header
-\li Qt Role
-\li QML Role Name
-\row
-\li Qt::DisplayRole
-\li display
-\row
-\li Qt::DecorationRole
-\li decoration
-\endtable
+reimplementing QAbstractItemModel::roleNames().
 
 Here is an application with a QAbstractListModel subclass named \c AnimalModel,
 which exposes the \e type and \e sizes roles. It reimplements