From b77d83a4af22efe58dc5606495592c1b167f0107 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 4 Dec 2017 11:48:09 -0500 Subject: Oops - fix a typo in the ExternalProcess change. --- src-qt5/core/libLumina/ExternalProcess.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/core/libLumina/ExternalProcess.h') 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); } -- cgit