From 0ae8cade5e3c8feab68a659889bd21368db4be58 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 6 Dec 2018 11:10:09 -0500 Subject: [PATCH] Fix a typo. Remove the RC timeout. --- widgets/mainwindow.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index d54b8f1c9..480ddd079 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -951,18 +951,19 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple, void MainWindow::not_GA_warning_message () { - QDateTime now=QDateTime::currentDateTime(); - QDateTime timeout=QDateTime(QDate(2018,12,31)); + MessageBox::critical_message (this, "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" "stations using WSJT-X v1.9.1 or earlier.\n\n" "Please help by urging everyone to upgrade to WSJT-X 2.0\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 ()