Allow mainwindow to send Fortran debugging output to the shell.

This commit is contained in:
Joe Taylor 2021-05-02 11:37:21 -04:00
parent d010929fab
commit 54882b57b9
1 changed files with 5 additions and 0 deletions

View File

@ -1417,6 +1417,11 @@ void MainWindow::readFromStdout() //readFromStdout
m_bandmapText += q;
}
}
if(t.indexOf("#") >= 0) {
int n=t.size();
qDebug() << t.mid(1,n-3).trimmed();
}
}
}