mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-15 08:31:57 -05:00
Add a warning message for RTTY contest mode.
This commit is contained in:
parent
0359414bfa
commit
5c65cb7f1d
@ -4220,6 +4220,13 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie
|
|||||||
// ### Should be in ARRL Field Day mode ??? ###
|
// ### Should be in ARRL Field Day mode ??? ###
|
||||||
MessageBox::information_message (this, tr ("Should you switch to ARRL Field Day mode?"));
|
MessageBox::information_message (this, tr ("Should you switch to ARRL Field Day mode?"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int n=w34.toInt();
|
||||||
|
if(n>=529 and n<=599 and m_nContest!=RTTY) {
|
||||||
|
// ### Should be in ARRL RTTY Roundup mode ??? ###
|
||||||
|
MessageBox::information_message (this, tr ("Should you switch to ARRL RTTY Roundup mode?"));
|
||||||
|
}
|
||||||
|
|
||||||
if(message_words.size () > 3 // enough fields for a normal message
|
if(message_words.size () > 3 // enough fields for a normal message
|
||||||
&& (message_words.at(1).contains(m_baseCall) || "DE" == message_words.at(1))
|
&& (message_words.at(1).contains(m_baseCall) || "DE" == message_words.at(1))
|
||||||
&& (message_words.at(2).contains(qso_partner_base_call) or bEU_VHF_w2)) {
|
&& (message_words.at(2).contains(qso_partner_base_call) or bEU_VHF_w2)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user