Skip to content

Commit dd7ce5f

Browse files
committed
Use std::as_const.
Signed-off-by: Camila Ayres <[email protected]>
1 parent 9c02bf3 commit dd7ce5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/folderwizard.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ bool FolderWizardRemotePath::isComplete() const
494494
}
495495
wizard()->setProperty("targetPath", targetPath);
496496

497-
for (const auto folder : qAsConst(FolderMan::instance()->map())) {
497+
for (const auto folder : std::as_const(FolderMan::instance()->map())) {
498498
if (folder->accountState()->account() != _account) {
499499
continue;
500500
}

0 commit comments

Comments
 (0)