SVN_SILENT: typo, small msvc warning--

svn path=/trunk/KDE/kdebase/apps/; revision=677179
This commit is contained in:
Christian Ehrlicher 2007-06-18 16:21:26 +00:00
parent ec5c086bc8
commit e92bbbe27c

View file

@ -846,10 +846,10 @@ void KListView::rowsInsertedArtifficial(const QModelIndex &parent,
}
// Add all elements mapped to the source model
for (int i = 0; i < d->proxyModel->rowCount(); i++)
for (int k = 0; k < d->proxyModel->rowCount(); k++)
{
d->sourceModelIndexList <<
d->proxyModel->mapToSource(d->proxyModel->index(i, 0));
d->proxyModel->mapToSource(d->proxyModel->index(k, 0));
}
// Sort them with the general purpose lessThan method