System : Introduce compiler warning C4457 with fixes

This commit is contained in:
Magne Sjaastad
2018-09-24 21:20:35 +02:00
parent 5a9a5ba803
commit 4009d4d63b
7 changed files with 30 additions and 31 deletions

View File

@@ -230,9 +230,9 @@ void RiuMultiCaseImportDialog::appendEGRIDFilesRecursively(const QString& folder
for (int i = 0; i < subFolders.size(); ++i)
{
QString folderName = subFolders[i];
QString subFolderName = subFolders[i];
QString absoluteFolderName = baseDir.absoluteFilePath(folderName);
QString absoluteFolderName = baseDir.absoluteFilePath(subFolderName);
appendEGRIDFilesRecursively(absoluteFolderName, gridFileNames);
}
}