summaryrefslogtreecommitdiff
path: root/ui/qt5/runner/executepage.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt5/runner/executepage.cc')
-rw-r--r--ui/qt5/runner/executepage.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/qt5/runner/executepage.cc b/ui/qt5/runner/executepage.cc
index 0d0980a..ce69c5e 100644
--- a/ui/qt5/runner/executepage.cc
+++ b/ui/qt5/runner/executepage.cc
@@ -13,6 +13,7 @@
#include "executepage.hh"
#include "executorwizard.hh"
+#include "executorprocess.hh"
#include <QAbstractButton>
#include <QGridLayout>
@@ -53,7 +54,7 @@ ExecutePage::ExecutePage(QWidget *parent) : HorizonWizardPage(parent) {
this->current = Prepare;
markRunning(this->current);
- executor = new QProcess(this);
+ executor = new ExecutorProcess(this);
executor->setProgram("hscript-executor");
connect(executor, &QProcess::readyReadStandardError,
this, &ExecutePage::executorReady);