Skip to content

Commit

Permalink
first commit from SVN of v4 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
mondus committed Nov 22, 2016
1 parent f346997 commit 4bbeec1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -802,8 +802,8 @@ bool MainWindow::checkDirectoryForNextIteration(int it, int flag) {
QString f = list.at(i);
f.chop(4);
bool s;
int j = f.toInt(&s);
if (s) ilist.append(j);
int i = f.toInt(&s);
if (s) ilist.append(i);
}
qSort(ilist);
for (int i = 0; i < ilist.size(); i++) {
Expand Down

0 comments on commit 4bbeec1

Please sign in to comment.