diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2015-09-29 19:43:26 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-10-03 16:50:53 +0200 |
commit | 969887429084da3b5a5d7d669015ff3489f6521c (patch) | |
tree | 1bf20d2e2427146716a9868fe58dec51cae6be68 /tdm | |
parent | ab88cb07af8f361b41887e964c9ebb2fe9de9a96 (diff) | |
download | tdebase-969887429084da3b5a5d7d669015ff3489f6521c.tar.gz tdebase-969887429084da3b5a5d7d669015ff3489f6521c.zip |
Use DM library in tdmtsak instead of making command line calls
(cherry picked from commit 6d028f3b522b5a4f978d52cc5b3c187cf329c3b2)
Diffstat (limited to 'tdm')
-rw-r--r-- | tdm/kfrontend/sakdlg.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdm/kfrontend/sakdlg.cc b/tdm/kfrontend/sakdlg.cc index 1f1adefdf..1848c8638 100644 --- a/tdm/kfrontend/sakdlg.cc +++ b/tdm/kfrontend/sakdlg.cc @@ -157,10 +157,10 @@ void SAKDlg::processInputPipeCommand(TQString command) { SAKDlg::~SAKDlg() { - if ((mSAKProcess) && (mSAKProcess->isRunning())) { - mSAKProcess->kill(SIGTERM); - delete mSAKProcess; - } + if ((mSAKProcess) && (mSAKProcess->isRunning())) { + mSAKProcess->kill(SIGKILL); + delete mSAKProcess; + } mControlPipeHandlerThread->terminate(); mControlPipeHandlerThread->wait(); |