mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 21:15:33 +00:00
apps/wizard: (trivial) fix misplaced arguments in installFile for installFiles
This commit is contained in:
parent
0f71efb919
commit
7e2fe77836
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
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)
|
bool Wizard::UnshieldWorker::installFiles(const QString &fileName, const QString &path, Qt::MatchFlags flags, bool keepSource, bool single)
|
||||||
|
|
Loading…
Reference in a new issue