aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
authorWeblate <noreply@weblate.org>2017-01-11 14:42:51 +0000
committerWeblate <noreply@weblate.org>2017-01-11 14:42:51 +0000
commitfd22c0ab9419c383cccd684f289afde86626f841 (patch)
treec9b5f3df5fedf5693ec3020e7cea4c6ab8824502 /src-qt5
parentTranslated using Weblate (lumina_CONFIG@cs (generated)) (diff)
parentRemove the "detach" option from the ExternalProcess class. Need to find out t... (diff)
downloadlumina-fd22c0ab9419c383cccd684f289afde86626f841.tar.gz
lumina-fd22c0ab9419c383cccd684f289afde86626f841.tar.bz2
lumina-fd22c0ab9419c383cccd684f289afde86626f841.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/core/libLumina/ExternalProcess.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core/libLumina/ExternalProcess.h b/src-qt5/core/libLumina/ExternalProcess.h
index 4cf91ccd..1325247f 100644
--- a/src-qt5/core/libLumina/ExternalProcess.h
+++ b/src-qt5/core/libLumina/ExternalProcess.h
@@ -33,9 +33,9 @@ public:
connect(this, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(processFinished()) );
}
~ExternalProcess(){
- if(this->state() == QProcess::Running){
+ /*if(this->state() == QProcess::Running){
this->detach(); //about to close down the QProcess - detach the other program so it can continue functioning normally.
- }
+ }*/
}
static void launch(QString program, QStringList args = QStringList()){
bgstack15