diff options
author | Christoph Schulthess | 2017-04-24 14:30:38 +0200 |
---|---|---|
committer | Christoph Schulthess | 2017-04-24 14:30:38 +0200 |
commit | 3645df11780083685be975923582ee8b206490ca (patch) | |
tree | f29928d48070bf64a86ea4353ac507b2d6409834 | |
parent | debugging information (diff) | |
download | pvs2-3645df11780083685be975923582ee8b206490ca.tar.gz pvs2-3645df11780083685be975923582ee8b206490ca.tar.xz pvs2-3645df11780083685be975923582ee8b206490ca.zip |
more debugging information and typo
-rw-r--r-- | src/client/toolbar/toolbar.cpp | 5 |
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(); |