diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-31 07:37:24 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-11-06 07:45:02 -0500 |
| commit | ada2ac0cb5d0ef2039ce55794928c4d05255ed65 (patch) | |
| tree | 9f2406c3beac8c55db10b4420bc28ed544186a01 /src/spawn.h | |
| parent | 72dd230cdc60e74446caceb5cfb4c6d32e4f6f68 (diff) | |
removed redundant checkBinary(), which used to check for non existing binaries, that's handled when spawning
removed useless checkEnvironment(), which checked for EventLog
removed CREATE_BREAKAWAY_FROM_JOB from CreateProcess() calls, didn't do anything
fixed setFromFileOrExecutable() when running just a filename that's not an executable name
split run()
fixed lock widget being disabled when running without a ui
Diffstat (limited to 'src/spawn.h')
| -rw-r--r-- | src/spawn.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/spawn.h b/src/spawn.h index 9fb346b0..a615b5ff 100644 --- a/src/spawn.h +++ b/src/spawn.h @@ -53,14 +53,10 @@ struct SpawnParameters };
-bool checkBinary(QWidget* parent, const SpawnParameters& sp);
-
bool checkSteam(
QWidget* parent, const SpawnParameters& sp,
const QDir& gameDirectory, const QString &steamAppID, const Settings& settings);
-bool checkEnvironment(QWidget* parent, const SpawnParameters& sp);
-
bool checkBlacklist(
QWidget* parent, const SpawnParameters& sp, Settings& settings);
|
