diff options
| author | Christian Ehrlicher <[email protected]> | 2007-06-18 16:21:26 +0000 |
|---|---|---|
| committer | Christian Ehrlicher <[email protected]> | 2007-06-18 16:21:26 +0000 |
| commit | e92bbbe27ca39a1329ae3f2d6ecae128dd71855b (patch) | |
| tree | fbae8b2fea26f9716e3da7d23cf2edf390f3dfb5 /src | |
| parent | ec5c086bc897f8934b6a303531b97339f1538175 (diff) | |
SVN_SILENT: typo, small msvc warning--
svn path=/trunk/KDE/kdebase/apps/; revision=677179
Diffstat (limited to 'src')
| -rw-r--r-- | src/klistview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/klistview.cpp b/src/klistview.cpp index acdc70220..1cba47b1b 100644 --- a/src/klistview.cpp +++ b/src/klistview.cpp @@ -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 |
