Revert "Extend grids looked up from CALL3.TXT from 4 to 6-digits if first 4 match"

Bad idea, need to  find a better way to extend  grids to 6-digits from
CALL3.TXT.

This reverts commit r7959

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7965 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville 2017-07-28 01:20:22 +00:00
parent 2e3e5990fc
commit dc144bc0fb
2 changed files with 6 additions and 10 deletions

View File

@ -1776,7 +1776,7 @@ void MainWindow::keyPressEvent (QKeyEvent * e)
break; break;
case Qt::Key_L: case Qt::Key_L:
if(e->modifiers() & Qt::ControlModifier) { if(e->modifiers() & Qt::ControlModifier) {
lookup (true); lookup();
genStdMsgs(m_rpt); genStdMsgs(m_rpt);
return; return;
} }
@ -4203,7 +4203,7 @@ void MainWindow::clearDX ()
m_QSOProgress = CALLING; m_QSOProgress = CALLING;
} }
void MainWindow::lookup (bool extend_grid) void MainWindow::lookup() //lookup()
{ {
QString hisCall {ui->dxCallEntry->text()}; QString hisCall {ui->dxCallEntry->text()};
if (!hisCall.size ()) return; if (!hisCall.size ()) return;
@ -4215,7 +4215,7 @@ void MainWindow::lookup (bool extend_grid)
for(int i=0; i<999999; i++) { for(int i=0; i<999999; i++) {
n=f.readLine(c,sizeof(c)); n=f.readLine(c,sizeof(c));
if(n <= 0) { if(n <= 0) {
if (!extend_grid) ui->dxGridEntry->clear (); ui->dxGridEntry->clear ();
break; break;
} }
QString t=QString(c); QString t=QString(c);
@ -4228,10 +4228,7 @@ void MainWindow::lookup (bool extend_grid)
} else { } else {
hisgrid=hisgrid.mid(0,4) + hisgrid.mid(4,2).toLower(); hisgrid=hisgrid.mid(0,4) + hisgrid.mid(4,2).toLower();
} }
if (!ui->dxGridEntry->text ().size () ui->dxGridEntry->setText(hisgrid);
|| (extend_grid && 6 == hisgrid.size () && hisgrid.left (4) == ui->dxGridEntry->text ())) {
ui->dxGridEntry->setText(hisgrid);
}
break; break;
} }
} }
@ -4241,7 +4238,7 @@ void MainWindow::lookup (bool extend_grid)
void MainWindow::on_lookupButton_clicked() //Lookup button void MainWindow::on_lookupButton_clicked() //Lookup button
{ {
lookup (true); lookup();
} }
void MainWindow::on_addButton_clicked() //Add button void MainWindow::on_addButton_clicked() //Add button

View File

@ -578,8 +578,7 @@ private:
void genStdMsgs(QString rpt, bool unconditional = false); void genStdMsgs(QString rpt, bool unconditional = false);
void genCQMsg(); void genCQMsg();
void clearDX (); void clearDX ();
void lookup (bool extend_grid = false); // extend_grid will fetch a void lookup();
// 6-digit grid if available
void ba2msg(QByteArray ba, char* message); void ba2msg(QByteArray ba, char* message);
void msgtype(QString t, QLineEdit* tx); void msgtype(QString t, QLineEdit* tx);
void stub(); void stub();