diff options
author | Ken Moore <ken@ixsystems.com> | 2017-12-04 11:48:09 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-12-04 11:48:09 -0500 |
commit | b77d83a4af22efe58dc5606495592c1b167f0107 (patch) | |
tree | e16be816470d72d2456141d984bee0bc344db537 /src-qt5/core | |
parent | Add the option to use stdout as an option for ExternalProcess. (diff) | |
download | lumina-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.h | 2 |
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); } |