summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlbert Astals Cid <albert.astals@canonical.com>2014-10-22 09:18:33 -0400
committerAlbert Astals Cid <albert.astals@canonical.com>2014-10-30 09:52:04 +0100
commita860500f8e7f705939ce489849e73c640d4316ce (patch)
tree228ec23ec816795dec70601806b5949aae9d3af8 /src
parent6ee73677b25b613b7698b9cdc850415455dbaadb (diff)
Adapt the names in the documentation to the names used in the header
This is needed since the names of the header are the ones you have to use in the QML signal handlers to access the variables Change-Id: I507e2ccc05a1fd2c5efd0bf4bef92ed33a186d95 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/itemmodels/qabstractitemmodel.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/corelib/itemmodels/qabstractitemmodel.cpp b/src/corelib/itemmodels/qabstractitemmodel.cpp
index 74a7ea1988..6b89c8377a 100644
--- a/src/corelib/itemmodels/qabstractitemmodel.cpp
+++ b/src/corelib/itemmodels/qabstractitemmodel.cpp
@@ -1552,13 +1552,13 @@ QAbstractItemModel::~QAbstractItemModel()
*/
/*!
- \fn void QAbstractItemModel::rowsMoved(const QModelIndex &sourceParent, int sourceStart, int sourceEnd, const QModelIndex &destinationParent, int destinationRow)
+ \fn void QAbstractItemModel::rowsMoved(const QModelIndex &parent, int start, int end, const QModelIndex &destination, int row)
\since 4.6
This signal is emitted after rows have been moved within the
- model. The items between \a sourceStart and \a sourceEnd
- inclusive, under the given \a sourceParent item have been moved to \a destinationParent
- starting at the row \a destinationRow.
+ model. The items between \a start and \a end
+ inclusive, under the given \a parent item have been moved to \a destination
+ starting at the row \a row.
\b{Note:} Components connected to this signal use it to adapt to changes
in the model's dimensions. It can only be emitted by the QAbstractItemModel
@@ -1584,13 +1584,13 @@ QAbstractItemModel::~QAbstractItemModel()
*/
/*!
- \fn void QAbstractItemModel::columnsMoved(const QModelIndex &sourceParent, int sourceStart, int sourceEnd, const QModelIndex &destinationParent, int destinationColumn)
+ \fn void QAbstractItemModel::columnsMoved(const QModelIndex &parent, int start, int end, const QModelIndex &destination, int column)
\since 4.6
This signal is emitted after columns have been moved within the
- model. The items between \a sourceStart and \a sourceEnd
- inclusive, under the given \a sourceParent item have been moved to \a destinationParent
- starting at the column \a destinationColumn.
+ model. The items between \a start and \a end
+ inclusive, under the given \a parent item have been moved to \a destination
+ starting at the column \a column.
\b{Note:} Components connected to this signal use it to adapt to changes
in the model's dimensions. It can only be emitted by the QAbstractItemModel