summaryrefslogtreecommitdiffstats
path: root/src/corelib/itemmodels
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2012-08-23 12:22:38 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-23 13:22:23 +0200
commit7b39a06fab64feb985982392f8db2b52fcd321f0 (patch)
treefc48e8ec90a38d580444c2c2d53810c1295d5c6e /src/corelib/itemmodels
parentacc4c28ef7d73e870df78e30178ec43b8b6c39da (diff)
Doc: Add \inmodule QtCore to all QtCore class doc bodies
Change-Id: I19100755c97cc155c76a859e19940e9f9222d34e Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'src/corelib/itemmodels')
-rw-r--r--src/corelib/itemmodels/qabstractitemmodel.cpp5
-rw-r--r--src/corelib/itemmodels/qidentityproxymodel.cpp2
-rw-r--r--src/corelib/itemmodels/qitemselectionmodel.cpp6
-rw-r--r--src/corelib/itemmodels/qsortfilterproxymodel.cpp2
-rw-r--r--src/corelib/itemmodels/qstringlistmodel.cpp2
5 files changed, 11 insertions, 6 deletions
diff --git a/src/corelib/itemmodels/qabstractitemmodel.cpp b/src/corelib/itemmodels/qabstractitemmodel.cpp
index eb8b96541f..4a266e4891 100644
--- a/src/corelib/itemmodels/qabstractitemmodel.cpp
+++ b/src/corelib/itemmodels/qabstractitemmodel.cpp
@@ -87,6 +87,7 @@ void QPersistentModelIndexData::destroy(QPersistentModelIndexData *data)
/*!
\class QPersistentModelIndex
+ \inmodule QtCore
\brief The QPersistentModelIndex class is used to locate data in a data model.
@@ -865,6 +866,7 @@ void QAbstractItemModelPrivate::columnsRemoved(const QModelIndex &parent,
/*!
\class QModelIndex
+ \inmodule QtCore
\brief The QModelIndex class is used to locate data in a data model.
@@ -1044,6 +1046,7 @@ void QAbstractItemModelPrivate::columnsRemoved(const QModelIndex &parent,
/*!
\class QAbstractItemModel
+ \inmodule QtCore
\brief The QAbstractItemModel class provides the abstract interface for
item model classes.
@@ -3124,6 +3127,7 @@ QModelIndexList QAbstractItemModel::persistentIndexList() const
/*!
\class QAbstractTableModel
+ \inmodule QtCore
\brief The QAbstractTableModel class provides an abstract model that can be
subclassed to create table models.
@@ -3250,6 +3254,7 @@ bool QAbstractTableModel::hasChildren(const QModelIndex &parent) const
/*!
\class QAbstractListModel
+ \inmodule QtCore
\brief The QAbstractListModel class provides an abstract model that can be
subclassed to create one-dimensional list models.
diff --git a/src/corelib/itemmodels/qidentityproxymodel.cpp b/src/corelib/itemmodels/qidentityproxymodel.cpp
index 0e2b14d89e..b0884142da 100644
--- a/src/corelib/itemmodels/qidentityproxymodel.cpp
+++ b/src/corelib/itemmodels/qidentityproxymodel.cpp
@@ -87,10 +87,10 @@ class QIdentityProxyModelPrivate : public QAbstractProxyModelPrivate
/*!
\since 4.8
\class QIdentityProxyModel
+ \inmodule QtCore
\brief The QIdentityProxyModel class proxies its source model unmodified
\ingroup model-view
- \inmodule QtCore
QIdentityProxyModel can be used to forward the structure of a source model exactly, with no sorting, filtering or other transformation.
This is similar in concept to an identity matrix where A.I = A.
diff --git a/src/corelib/itemmodels/qitemselectionmodel.cpp b/src/corelib/itemmodels/qitemselectionmodel.cpp
index f5bfff083e..147dce61b2 100644
--- a/src/corelib/itemmodels/qitemselectionmodel.cpp
+++ b/src/corelib/itemmodels/qitemselectionmodel.cpp
@@ -49,12 +49,12 @@ QT_BEGIN_NAMESPACE
/*!
\class QItemSelectionRange
+ \inmodule QtCore
\brief The QItemSelectionRange class manages information about a
range of selected items in a model.
\ingroup model-view
- \inmodule QtCore
A QItemSelectionRange contains information about a range of
selected items in a model. A range of items is a contiguous array
@@ -339,11 +339,11 @@ QModelIndexList QItemSelectionRange::indexes() const
/*!
\class QItemSelection
+ \inmodule QtCore
\brief The QItemSelection class manages information about selected items in a model.
\ingroup model-view
- \inmodule QtCore
A QItemSelection describes the items in a model that have been
selected by the user. A QItemSelection is basically a list of
@@ -929,11 +929,11 @@ void QItemSelectionModelPrivate::_q_layoutChanged()
/*!
\class QItemSelectionModel
+ \inmodule QtCore
\brief The QItemSelectionModel class keeps track of a view's selected items.
\ingroup model-view
- \inmodule QtCore
A QItemSelectionModel keeps track of the selected items in a view, or
in several views onto the same model. It also keeps track of the
diff --git a/src/corelib/itemmodels/qsortfilterproxymodel.cpp b/src/corelib/itemmodels/qsortfilterproxymodel.cpp
index 251228fed0..8958c4e4dc 100644
--- a/src/corelib/itemmodels/qsortfilterproxymodel.cpp
+++ b/src/corelib/itemmodels/qsortfilterproxymodel.cpp
@@ -1528,11 +1528,11 @@ void QSortFilterProxyModelPrivate::_q_sourceColumnsMoved(
/*!
\since 4.1
\class QSortFilterProxyModel
+ \inmodule QtCore
\brief The QSortFilterProxyModel class provides support for sorting and
filtering data passed between another model and a view.
\ingroup model-view
- \inmodule QtCore
QSortFilterProxyModel can be used for sorting items, filtering out items,
or both. The model transforms the structure of a source model by mapping
diff --git a/src/corelib/itemmodels/qstringlistmodel.cpp b/src/corelib/itemmodels/qstringlistmodel.cpp
index e7f219f471..ba74cfbe48 100644
--- a/src/corelib/itemmodels/qstringlistmodel.cpp
+++ b/src/corelib/itemmodels/qstringlistmodel.cpp
@@ -53,10 +53,10 @@ QT_BEGIN_NAMESPACE
/*!
\class QStringListModel
+ \inmodule QtCore
\brief The QStringListModel class provides a model that supplies strings to views.
\ingroup model-view
- \inmodule QtCore
QStringListModel is an editable model that can be used for simple
cases where you need to display a number of strings in a view