diff options
author | Christoph Schulthess | 2017-03-09 11:35:35 +0100 |
---|---|---|
committer | Christoph Schulthess | 2017-03-09 11:35:35 +0100 |
commit | df6bf713ae98cc8089e836c17a5b24afb65313fd (patch) | |
tree | df0d224c286d50805a2cdd06821d1befea7519bd | |
parent | added btnCustom and function onBtnCustom (diff) | |
download | pvs2-df6bf713ae98cc8089e836c17a5b24afb65313fd.tar.gz pvs2-df6bf713ae98cc8089e836c17a5b24afb65313fd.tar.xz pvs2-df6bf713ae98cc8089e836c17a5b24afb65313fd.zip |
onBtnCustom function
-rw-r--r-- | src/client/toolbar/toolbar.cpp | 4 |
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(); } |