Skip to content

Commit

Permalink
add qAsConst as requested and move & to the left
Browse files Browse the repository at this point in the history
  • Loading branch information
HeCorr committed Jul 27, 2024
1 parent 9fdf112 commit b8ee44f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/importimageseqdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ const PredefinedKeySetParams ImportImageSeqDialog::predefinedKeySetParams() cons
dot = finalList[0].lastIndexOf(".");

QStringList absolutePaths;
for (const QString &fileName : finalList) {
for (const QString& fileName : qAsConst(finalList)) {
absolutePaths << path + fileName;
}

Expand Down

0 comments on commit b8ee44f

Please sign in to comment.