mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
SVN_SILENT: typo, small msvc warning--
svn path=/trunk/KDE/kdebase/apps/; revision=677179
This commit is contained in:
parent
ec5c086bc8
commit
e92bbbe27c
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue