summaryrefslogtreecommitdiff
path: root/src/organizercore.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-09-13 15:15:18 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-09-13 15:15:18 -0400
commit09b95e39434b9efc49a606957c94cd42309b7fb6 (patch)
tree4e6d3f345166c460589ff10c45a126c9028ab454 /src/organizercore.cpp
parentb867b0bccdb32d94e1646d8f3f8e8a39d4b2446e (diff)
moved all spawn dialogs into a namespace
starting steam with spawn() instead of QProcess dialogs for bad steam registry key and failure refactored credentials code, added logging add environment variables to env
Diffstat (limited to 'src/organizercore.cpp')
-rw-r--r--src/organizercore.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/organizercore.cpp b/src/organizercore.cpp
index dd4edbce..fbc9083b 100644
--- a/src/organizercore.cpp
+++ b/src/organizercore.cpp
@@ -1288,7 +1288,6 @@ HANDLE OrganizerCore::spawnBinaryProcess(const QFileInfo &binary,
sp.currentDirectory = currentDirectory;
sp.hooked = true;
-
prepareStart();
QWidget *window = qApp->activeWindow();
@@ -1296,7 +1295,6 @@ HANDLE OrganizerCore::spawnBinaryProcess(const QFileInfo &binary,
window = nullptr;
}
-
if (!spawn::checkBinary(window, sp)) {
return INVALID_HANDLE_VALUE;
}
@@ -1369,8 +1367,6 @@ HANDLE OrganizerCore::spawnBinaryProcess(const QFileInfo &binary,
.arg(QDir::toNativeSeparators(cwdPath),
QDir::toNativeSeparators(binPath), arguments);
- log::debug("Spawning proxyed process <{}>", cmdline);
-
sp.binary = QFileInfo(QCoreApplication::applicationFilePath());
sp.arguments = cmdline;
sp.currentDirectory.setPath(QCoreApplication::applicationDirPath());