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