add missing change from "GUI: Rename methods in FileList and PathMatch" (#929)

This commit is contained in:
BNT 2017-07-28 16:37:59 +02:00 committed by Daniel Marjamäki
parent b2fcdf8a8a
commit f3cef7f9eb
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ void FileLister::recursiveAddFiles(std::map<std::string, std::size_t> &files, co
}
} else {
// Directory
if (!ignored.Match(fname))
if (!ignored.match(fname))
FileLister::recursiveAddFiles(files, fname, extra, ignored);
}
} while (FindNextFileA(hFind, &ffd) != FALSE);