summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Schulthess2017-04-24 14:30:38 +0200
committerChristoph Schulthess2017-04-24 14:30:38 +0200
commit3645df11780083685be975923582ee8b206490ca (patch)
treef29928d48070bf64a86ea4353ac507b2d6409834
parentdebugging information (diff)
downloadpvs2-3645df11780083685be975923582ee8b206490ca.tar.gz
pvs2-3645df11780083685be975923582ee8b206490ca.tar.xz
pvs2-3645df11780083685be975923582ee8b206490ca.zip
more debugging information and typo
-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();