Correct the expression of RC3 expiration date.

This commit is contained in:
Joe Taylor 2023-12-23 09:24:23 -05:00
parent 826fa8ae03
commit c8cbb481a0

View File

@ -1112,7 +1112,7 @@ void MainWindow::not_GA_warning_message ()
"available for testing purposes. By design it will\n"
"be nonfunctional after September 30, 2024.");
auto now = QDateTime::currentDateTimeUtc ();
if (now >= QDateTime {{2024, 09, 30}, {23, 59, 59, 999}, Qt::UTC}) {
if (now >= QDateTime {{2024, 9, 30}, {23, 59, 59, 999}, Qt::UTC}) {
Q_EMIT finished ();
}
}