1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-05-31 00:11:31 +00:00

Merge pull request #1062 from stil-t/master

apps/wizard: (trivial) fix misplaced arguments in installFile for installFiles
This commit is contained in:
scrawl 2016-09-17 18:09:51 +02:00 committed by GitHub
commit 8520b97b37

View file

@ -302,7 +302,7 @@ bool Wizard::UnshieldWorker::copyDirectory(const QString &source, const QString
bool Wizard::UnshieldWorker::installFile(const QString &fileName, const QString &path, Qt::MatchFlags flags, bool keepSource)
{
return installFiles(fileName, path, flags, true, keepSource);
return installFiles(fileName, path, flags, keepSource, true);
}
bool Wizard::UnshieldWorker::installFiles(const QString &fileName, const QString &path, Qt::MatchFlags flags, bool keepSource, bool single)