mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-30 05:12:26 -04:00
Fix a typo. Remove the RC timeout.
This commit is contained in:
parent
cc773b6586
commit
0ae8cade5e
@ -951,18 +951,19 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
|
|||||||
|
|
||||||
void MainWindow::not_GA_warning_message ()
|
void MainWindow::not_GA_warning_message ()
|
||||||
{
|
{
|
||||||
QDateTime now=QDateTime::currentDateTime();
|
|
||||||
QDateTime timeout=QDateTime(QDate(2018,12,31));
|
|
||||||
|
|
||||||
MessageBox::critical_message (this,
|
MessageBox::critical_message (this,
|
||||||
"IMPORTANT: New protocols for the FT8 and MSK144 modes\n"
|
"IMPORTANT: New protocols for the FT8 and MSK144 modes\n"
|
||||||
"became the world-wide standards on December 10, 2019.\n\n"
|
"became the world-wide standards on December 10, 2018.\n\n"
|
||||||
"WSJT-X 2.0 cannot communicate in these modes with other\n"
|
"WSJT-X 2.0 cannot communicate in these modes with other\n"
|
||||||
"stations using WSJT-X v1.9.1 or earlier.\n\n"
|
"stations using WSJT-X v1.9.1 or earlier.\n\n"
|
||||||
"Please help by urging everyone to upgrade to WSJT-X 2.0\n"
|
"Please help by urging everyone to upgrade to WSJT-X 2.0\n"
|
||||||
"no later than January 1, 2019.\n");
|
"no later than January 1, 2019.\n");
|
||||||
|
|
||||||
if(now.daysTo(timeout) < 0) Q_EMIT finished();
|
// QDateTime now=QDateTime::currentDateTime();
|
||||||
|
// QDateTime timeout=QDateTime(QDate(2018,12,31));
|
||||||
|
// if(now.daysTo(timeout) < 0) Q_EMIT finished();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::initialize_fonts ()
|
void MainWindow::initialize_fonts ()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user