summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2020-05-17 04:02:32 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2020-05-17 04:02:32 -0500
commit3a1de05ba868d3a0f6c291ed83997b735575bb94 (patch)
tree1145bceae4bfebb3b485b6ba84ee82ce789df54c /ui
parentf9c5732721d179ab682d08faa9d30d6b711957bf (diff)
downloadhorizon-3a1de05ba868d3a0f6c291ed83997b735575bb94.tar.gz
horizon-3a1de05ba868d3a0f6c291ed83997b735575bb94.tar.bz2
horizon-3a1de05ba868d3a0f6c291ed83997b735575bb94.tar.xz
horizon-3a1de05ba868d3a0f6c291ed83997b735575bb94.zip
Qt Runner: No longer living in a simulation
Diffstat (limited to 'ui')
-rw-r--r--ui/qt5/runner/executepage.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/qt5/runner/executepage.cc b/ui/qt5/runner/executepage.cc
index c15c4a7..999731a 100644
--- a/ui/qt5/runner/executepage.cc
+++ b/ui/qt5/runner/executepage.cc
@@ -3,7 +3,7 @@
* horizon-run-qt5, the Qt 5 executor user interface for
* Project Horizon
*
- * Copyright (c) 2019 Adélie Linux and contributors. All rights reserved.
+ * Copyright (c) 2019-2020 Adélie Linux and contributors. All rights reserved.
* This code is licensed under the AGPL 3.0 license, as noted in the
* LICENSE-code file in the root directory of this repository.
*
@@ -54,8 +54,7 @@ ExecutePage::ExecutePage(QWidget *parent) : HorizonWizardPage(parent) {
markRunning(this->current);
executor = new QProcess(this);
- executor->setProgram("../../tools/hscript-simulate/hscript-simulate");
- executor->setArguments({"/etc/horizon/installfile"});
+ executor->setProgram("hscript-executor");
connect(executor, &QProcess::readyReadStandardError,
this, &ExecutePage::executorReady);
connect(executor, &QProcess::readyReadStandardOutput,