summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Schulthess2017-03-09 11:35:35 +0100
committerChristoph Schulthess2017-03-09 11:35:35 +0100
commitdf6bf713ae98cc8089e836c17a5b24afb65313fd (patch)
treedf0d224c286d50805a2cdd06821d1befea7519bd
parentadded btnCustom and function onBtnCustom (diff)
downloadpvs2-df6bf713ae98cc8089e836c17a5b24afb65313fd.tar.gz
pvs2-df6bf713ae98cc8089e836c17a5b24afb65313fd.tar.xz
pvs2-df6bf713ae98cc8089e836c17a5b24afb65313fd.zip
onBtnCustom function
-rw-r--r--src/client/toolbar/toolbar.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client/toolbar/toolbar.cpp b/src/client/toolbar/toolbar.cpp
index 424e393..4b714e2 100644
--- a/src/client/toolbar/toolbar.cpp
+++ b/src/client/toolbar/toolbar.cpp
@@ -500,9 +500,7 @@ void Toolbar::onBtnCustom()
QProcess runDbg;
const bool on = _ui->btnCustom->isChecked();
if (on) {
- runDbg.start("/bin/sh", QStringList() << "/etc/start_debug_TLS.sh");
- } else {
- runDbg.start("/bin/sh", QStringList() << "/etc/stop_debug.sh");
+ runDbg.start("/bin/sh", QStringList() << "/opt/openslx/remotedebug/startdebug.sh");
}
runDbg.waitForFinished();
}