mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-04 14:17:52 -04:00
Remove (most of) lab7.
This commit is contained in:
parent
4d51c4e0a8
commit
c4288b143d
@ -707,12 +707,6 @@ void MainWindow::createStatusBar() //createStatusBar
|
|||||||
lab6->setMinimumSize(QSize(50,10));
|
lab6->setMinimumSize(QSize(50,10));
|
||||||
lab6->setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
lab6->setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
||||||
statusBar()->addWidget(lab6);
|
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
|
void MainWindow::on_tolSpinBox_valueChanged(int i) //tolSpinBox
|
||||||
@ -1068,13 +1062,6 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
while(proc_m65.canReadLine())
|
while(proc_m65.canReadLine())
|
||||||
{
|
{
|
||||||
QByteArray t=proc_m65.readLine();
|
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((t.indexOf("<EarlyFinished>") >= 0) or (t.indexOf("<DecodeFinished>") >= 0)) {
|
||||||
if(m_widebandDecode) {
|
if(m_widebandDecode) {
|
||||||
m_widebandDecode=false;
|
m_widebandDecode=false;
|
||||||
|
@ -166,7 +166,7 @@ private:
|
|||||||
QLabel* lab4;
|
QLabel* lab4;
|
||||||
QLabel* lab5;
|
QLabel* lab5;
|
||||||
QLabel* lab6;
|
QLabel* lab6;
|
||||||
QLabel* lab7;
|
QLabel* lab7; //Why still needed?
|
||||||
|
|
||||||
QMessageBox msgBox0;
|
QMessageBox msgBox0;
|
||||||
|
|
||||||
@ -193,7 +193,7 @@ private:
|
|||||||
QString m_mode;
|
QString m_mode;
|
||||||
QString m_colors; //Why still needed?
|
QString m_colors; //Why still needed?
|
||||||
QString m_editorCommand; //Why still needed?
|
QString m_editorCommand; //Why still needed?
|
||||||
QString m_modeTx;
|
QString m_modeTx; //Why still needed?
|
||||||
|
|
||||||
QHash<QString,bool> m_worked;
|
QHash<QString,bool> m_worked;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user