mirror of https://github.com/CGAL/cgal
Remove unwanted duplicated incrementation.
This commit is contained in:
parent
7c6947b19b
commit
c971f1fd64
|
|
@ -2061,7 +2061,6 @@ void MainWindow::exportStatistics()
|
||||||
{
|
{
|
||||||
str.append(QString(" %1: ").arg(data.titles.at(title)));
|
str.append(QString(" %1: ").arg(data.titles.at(title)));
|
||||||
str.append(QString("%1\n").arg(sit->computeStats(title)));
|
str.append(QString("%1\n").arg(sit->computeStats(title)));
|
||||||
title++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -2083,4 +2082,4 @@ void MainWindow::exportStatistics()
|
||||||
QTextStream outStream(&output);
|
QTextStream outStream(&output);
|
||||||
outStream << str;
|
outStream << str;
|
||||||
output.close();
|
output.close();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue