fix: apply client overrides in mrpacks

another oopsie x.x
This commit is contained in:
flow
2022-06-11 13:43:09 -03:00
parent b3c8f9d508
commit 54144154f9
3 changed files with 61 additions and 4 deletions

View File

@ -124,4 +124,8 @@ QString getDesktopDir();
// call it *name* and assign it the icon *icon*
// return true if operation succeeded
bool createShortCut(QString location, QString dest, QStringList args, QString name, QString iconLocation);
// Overrides one folder with the contents of another, preserving items exclusive to the first folder
// Equivalent to doing QDir::rename, but allowing for overrides
bool overrideFolder(QString overwritten_path, QString override_path);
}