aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-12-04 11:48:09 -0500
committerKen Moore <ken@ixsystems.com>2017-12-04 11:48:09 -0500
commitb77d83a4af22efe58dc5606495592c1b167f0107 (patch)
treee16be816470d72d2456141d984bee0bc344db537 /src-qt5/core
parentAdd the option to use stdout as an option for ExternalProcess. (diff)
downloadlumina-b77d83a4af22efe58dc5606495592c1b167f0107.tar.gz
lumina-b77d83a4af22efe58dc5606495592c1b167f0107.tar.bz2
lumina-b77d83a4af22efe58dc5606495592c1b167f0107.zip
Oops - fix a typo in the ExternalProcess change.
Diffstat (limited to 'src-qt5/core')
-rw-r--r--src-qt5/core/libLumina/ExternalProcess.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/ExternalProcess.h b/src-qt5/core/libLumina/ExternalProcess.h
index 38994931..e75d6108 100644
--- a/src-qt5/core/libLumina/ExternalProcess.h
+++ b/src-qt5/core/libLumina/ExternalProcess.h
@@ -58,7 +58,7 @@ public:
if(logfile.isEmpty()){
this->setStandardOutputFile(QProcess::nullDevice());
}else if(logfile=="stdout"){
- connect(this, SIGNAL(readyReadStandardOutput()), this, SLOT(updateLog());
+ connect(this, SIGNAL(readyReadStandardOutput()), this, SLOT(updateLog()) );
}else{
this->setStandardOutputFile(logfile);
}
bgstack15