Remove (most of) lab7.

This commit is contained in:
Joe Taylor 2022-12-05 19:59:15 -05:00
parent 4d51c4e0a8
commit c4288b143d
2 changed files with 2 additions and 15 deletions

View File

@ -707,12 +707,6 @@ void MainWindow::createStatusBar() //createStatusBar
lab6->setMinimumSize(QSize(50,10));
lab6->setFrameStyle(QFrame::Panel | QFrame::Sunken);
statusBar()->addWidget(lab6);
lab7 = new QLabel("Avg: 0");
lab7->setAlignment(Qt::AlignHCenter);
lab7->setMinimumSize(QSize(50,10));
lab7->setFrameStyle(QFrame::Panel | QFrame::Sunken);
statusBar()->addWidget(lab7);
}
void MainWindow::on_tolSpinBox_valueChanged(int i) //tolSpinBox
@ -1068,13 +1062,6 @@ void MainWindow::readFromStdout() //readFromStdout
while(proc_m65.canReadLine())
{
QByteArray t=proc_m65.readLine();
if(t.indexOf("<QuickDecodeDone>") >= 0) {
m_nsum=t.mid(17,4).toInt();
m_nsave=t.mid(21,4).toInt();
lab7->setText (QString {"Avg: %1"}.arg (m_nsum));
if(m_modeQ65>0) m_wide_graph_window->setDecodeFinished();
}
if((t.indexOf("<EarlyFinished>") >= 0) or (t.indexOf("<DecodeFinished>") >= 0)) {
if(m_widebandDecode) {
m_widebandDecode=false;

View File

@ -166,7 +166,7 @@ private:
QLabel* lab4;
QLabel* lab5;
QLabel* lab6;
QLabel* lab7;
QLabel* lab7; //Why still needed?
QMessageBox msgBox0;
@ -193,7 +193,7 @@ private:
QString m_mode;
QString m_colors; //Why still needed?
QString m_editorCommand; //Why still needed?
QString m_modeTx;
QString m_modeTx; //Why still needed?
QHash<QString,bool> m_worked;