summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Schulthess2017-03-22 17:05:38 +0100
committerChristoph Schulthess2017-03-22 17:05:38 +0100
commitdb11153b5fc1c7cb9353af0496cea42606c15bb7 (patch)
treebf0f7937c84c83af5b9c9f47e59875c041b2adf6
parentminor fix (diff)
downloadpvs2-db11153b5fc1c7cb9353af0496cea42606c15bb7.tar.gz
pvs2-db11153b5fc1c7cb9353af0496cea42606c15bb7.tar.xz
pvs2-db11153b5fc1c7cb9353af0496cea42606c15bb7.zip
testing
-rw-r--r--src/client/toolbar/toolbar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/toolbar/toolbar.cpp b/src/client/toolbar/toolbar.cpp
index 2032df9..dcc7a45 100644
--- a/src/client/toolbar/toolbar.cpp
+++ b/src/client/toolbar/toolbar.cpp
@@ -499,8 +499,8 @@ void Toolbar::onBtnCustom()
{
QProcess runDbg;
//const bool on = _ui->btnCustom->isChecked();
- int started = runDbg.start("/bin/sh", QStringList() << "/opt/openslx/remotedebug/startdebug.sh");
- qDebug() << started;
+ runDbg.start("/bin/sh", QStringList() << "/opt/openslx/remotedebug/startdebug.sh");
+ qDebug() << runDbg.exitCode();
}
void Toolbar::onBtnLockDesktop()