summaryrefslogtreecommitdiffstats
path: root/src/client/toolbar/toolbar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/toolbar/toolbar.cpp')
-rw-r--r--src/client/toolbar/toolbar.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/toolbar/toolbar.cpp b/src/client/toolbar/toolbar.cpp
index 0ca32e9..0613212 100644
--- a/src/client/toolbar/toolbar.cpp
+++ b/src/client/toolbar/toolbar.cpp
@@ -501,11 +501,12 @@ void Toolbar::onBtnCustom()
if (on) {
_ui->btnCustom->setStyleSheet("background-color: red; color: white; font: bold");
_ui->btnCustom->setText("Debug mode: ON");
- this->runDbg.start("bin/sh", QStringList() << "/opt/openslx/remotedebug/startdebug_notxterm.sh");
+ this->runDbg.start("bin/sh", QStringList() << "/opt/openslx/remotedebug/startdebug_noxterm.sh");
} else {
this->runDbg.close();
}
-
+ qDebug() << "started: " << this->runDbg.started();
+ qDebug() << "finished: " << this->runDbg.finished();
qDebug() << "state: " << this->runDbg.state();
qDebug() << "error: " << this->runDbg.errorString();