From 292d6454c3f5c393e3e155d9ea820994e59d5c69 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sun, 3 May 2020 11:23:38 -0400 Subject: [PATCH] Warning msg: "EU VHF Contest messages require a 6-character locator." --- widgets/mainwindow.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 4450ffe6e..f7de7186b 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -1786,6 +1786,10 @@ void MainWindow::on_actionSettings_triggered() //Setup Dialog } if(m_config.special_op_id()!=nContest0) ui->tx1->setEnabled(true); chkFT4(); + if(SpecOp::EU_VHF==m_config.special_op_id() and m_config.my_grid().size()<6) { + MessageBox::information_message (this, + "EU VHF Contest messages require a 6-character locator."); + } } } @@ -6166,7 +6170,7 @@ void MainWindow::on_actionMSK144_triggered() // Make sure that MSK144 is not checked. ui->actionMSK144->setChecked(false); MessageBox::warning_message (this, tr ("Improper mode"), - "MSK144 not available if Fox, Hound, Field Day, or RTTY contest is selected."); + "MSK144 not available if Fox, Hound, Field Day, RTTY, or WW Digi contest is selected."); return; } m_mode="MSK144";