Previous commit message should have mentioned number of decodes is now displayed on status bar.

This commit is contained in:
Joe Taylor 2020-03-12 15:11:20 -04:00
parent 8e7685ea36
commit afe0262ec9
2 changed files with 5 additions and 5 deletions

View File

@ -3199,8 +3199,8 @@ void MainWindow::readFromStdout() //readFromStdout
bool bAvgMsg=false;
int navg=0;
if(line_read.indexOf("<DecodeFinished>") >= 0) {
// qDebug() << "bb" << QDateTime::currentDateTimeUtc().toString("hh:mm:ss.zzz") << line_read;
m_ndecodes=0;
// qDebug() << "bb" << QDateTime::currentDateTimeUtc().toString("hh:mm:ss.zzz") << line_read;
m_nDecodes=0;
if(m_mode=="QRA64") m_wideGraph->drawRed(0,0);
m_bDecoded = line_read.mid(20).trimmed().toInt() > 0;
auto tnow = QDateTime::currentDateTimeUtc ();
@ -3220,8 +3220,8 @@ void MainWindow::readFromStdout() //readFromStdout
}
return;
} else {
m_ndecodes+=1;
ndecodes_label.setText(QString::number(m_ndecodes));
m_nDecodes+=1;
ndecodes_label.setText(QString::number(m_nDecodes));
if(m_mode=="JT4" or m_mode=="JT65" or m_mode=="QRA64") {
int n=line_read.indexOf("f");
if(n<0) n=line_read.indexOf("d");

View File

@ -469,7 +469,7 @@ private:
qint32 m_kin0=0;
qint32 m_earlyDecode=41;
qint32 m_earlyDecode2=47;
qint32 m_ndecodes=0;
qint32 m_nDecodes=0;
bool m_btxok; //True if OK to transmit
bool m_diskData;