Skip to content
Snippets Groups Projects
Commit 49d5cacd authored by Robert Loehning's avatar Robert Loehning
Browse files

Don't call QDirIterator::filePath() twice

parent 6ac8bd0c
No related branches found
No related tags found
No related merge requests found
...@@ -75,10 +75,10 @@ QStringList FindInFiles::files() ...@@ -75,10 +75,10 @@ QStringList FindInFiles::files()
fileNameFilters(), fileNameFilters(),
QDir::Files|QDir::Readable, QDir::Files|QDir::Readable,
QDirIterator::Subdirectories); QDirIterator::Subdirectories);
while (it.hasNext()) {
it.next(); while (it.hasNext())
fileList << it.filePath(); fileList << it.next();
}
return fileList; return fileList;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment