]> cloud.milkyroute.net Git - dolphin.git/commitdiff
SVN_SILENT: typo, small msvc warning--
authorChristian Ehrlicher <ch.ehrlicher@gmx.de>
Mon, 18 Jun 2007 16:21:26 +0000 (16:21 +0000)
committerChristian Ehrlicher <ch.ehrlicher@gmx.de>
Mon, 18 Jun 2007 16:21:26 +0000 (16:21 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=677179

src/klistview.cpp

index acdc70220a3e5f11b535b57c6164ebf042c7a4b8..1cba47b1bd44c2c8e785beaa0f5b03bf359a3d4f 100644 (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