Skip to content

Commit 4bbeec1

Browse files
committed
first commit from SVN of v4 branch
1 parent f346997 commit 4bbeec1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mainwindow.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -802,8 +802,8 @@ bool MainWindow::checkDirectoryForNextIteration(int it, int flag) {
802802
QString f = list.at(i);
803803
f.chop(4);
804804
bool s;
805-
int j = f.toInt(&s);
806-
if (s) ilist.append(j);
805+
int i = f.toInt(&s);
806+
if (s) ilist.append(i);
807807
}
808808
qSort(ilist);
809809
for (int i = 0; i < ilist.size(); i++) {

0 commit comments

Comments
 (0)