mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-24 21:28:41 -05:00
Remove a no-longer-used parameter from calls to lookup().
This commit is contained in:
parent
3c09589f74
commit
6eb6e1424b
@ -2066,7 +2066,7 @@ void MainWindow::keyPressEvent (QKeyEvent * e)
|
||||
break;
|
||||
case Qt::Key_L:
|
||||
if(e->modifiers() & Qt::ControlModifier) {
|
||||
lookup(true);
|
||||
lookup();
|
||||
genStdMsgs(m_rpt);
|
||||
return;
|
||||
}
|
||||
@ -4916,7 +4916,7 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie
|
||||
if (hisgrid.contains (grid_regexp)) {
|
||||
if(ui->dxGridEntry->text().mid(0,4) != hisgrid) ui->dxGridEntry->setText(hisgrid);
|
||||
}
|
||||
lookup(false);
|
||||
lookup();
|
||||
m_hisGrid = ui->dxGridEntry->text();
|
||||
|
||||
QString rpt = message.report();
|
||||
@ -5324,7 +5324,7 @@ void MainWindow::clearDX ()
|
||||
m_QSOProgress = CALLING;
|
||||
}
|
||||
|
||||
void MainWindow::lookup(bool lookupButtonClicked)
|
||||
void MainWindow::lookup()
|
||||
{
|
||||
QString hisCall {ui->dxCallEntry->text()};
|
||||
QString hisgrid0 {ui->dxGridEntry->text()};
|
||||
@ -5364,7 +5364,7 @@ void MainWindow::lookup(bool lookupButtonClicked)
|
||||
|
||||
void MainWindow::on_lookupButton_clicked() //Lookup button
|
||||
{
|
||||
lookup(true);
|
||||
lookup();
|
||||
}
|
||||
|
||||
void MainWindow::on_addButton_clicked() //Add button
|
||||
|
@ -700,7 +700,7 @@ private:
|
||||
void genStdMsgs(QString rpt, bool unconditional = false);
|
||||
void genCQMsg();
|
||||
void clearDX ();
|
||||
void lookup(bool lookupButtonClicked);
|
||||
void lookup();
|
||||
void ba2msg(QByteArray ba, char* message);
|
||||
void msgtype(QString t, QLineEdit* tx);
|
||||
void stub();
|
||||
|
Loading…
Reference in New Issue
Block a user