Rename a variable it -> childIt.

There is another iterator called it at the top of this function.

Change-Id: I8addf47d66f098c5d811eb54674525eddb4d4a1f
Reviewed-by: David Faure <faure@kde.org>
This commit is contained in:
Stephen Kelly 2012-09-26 10:55:05 +02:00 committed by The Qt Project
parent d85dd245f9
commit c5c007b813

View File

@ -1173,12 +1173,12 @@ void QSortFilterProxyModelPrivate::_q_sourceDataChanged(const QModelIndex &sourc
remove_source_items(m->proxy_rows, m->source_rows,
source_rows_remove, source_parent, Qt::Vertical);
QSet<int> source_rows_remove_set = qVectorToSet(source_rows_remove);
QVector<QModelIndex>::iterator it = m->mapped_children.end();
while (it != m->mapped_children.begin()) {
--it;
const QModelIndex source_child_index = *it;
QVector<QModelIndex>::iterator childIt = m->mapped_children.end();
while (childIt != m->mapped_children.begin()) {
--childIt;
const QModelIndex source_child_index = *childIt;
if (source_rows_remove_set.contains(source_child_index.row())) {
it = m->mapped_children.erase(it);
childIt = m->mapped_children.erase(childIt);
remove_from_mapping(source_child_index);
}
}