Bump EOL
This commit is contained in:
parent
65a19e4707
commit
2250589f83
@ -1299,15 +1299,20 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
|
|||||||
if (!m_valid) throw std::runtime_error {"Fatal initialization exception"};
|
if (!m_valid) throw std::runtime_error {"Fatal initialization exception"};
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::not_GA_warning_message ()
|
QDate eol(2018, 9, 17);
|
||||||
{
|
|
||||||
QDate eol(2018, 9, 15);
|
|
||||||
|
|
||||||
|
void MainWindow::expiry_warning_message()
|
||||||
|
{
|
||||||
if(QDate::currentDate() >= eol){
|
if(QDate::currentDate() >= eol){
|
||||||
MessageBox::critical_message (this, QString("This pre-release development build of FT8Call has expired. Please upgrade to the latest version."));
|
MessageBox::critical_message (this, QString("This pre-release development build of FT8Call has expired. Please upgrade to the latest version."));
|
||||||
close();
|
close();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::not_GA_warning_message ()
|
||||||
|
{
|
||||||
|
expiry_warning_message();
|
||||||
|
|
||||||
MessageBox::critical_message (this,
|
MessageBox::critical_message (this,
|
||||||
QString("This version of %1 is a pre-release development\n"
|
QString("This version of %1 is a pre-release development\n"
|
||||||
|
@ -364,6 +364,7 @@ private slots:
|
|||||||
void on_sbMax_dB_valueChanged(int n);
|
void on_sbMax_dB_valueChanged(int n);
|
||||||
void on_pbFoxReset_clicked();
|
void on_pbFoxReset_clicked();
|
||||||
void on_comboBoxHoundSort_activated (int index);
|
void on_comboBoxHoundSort_activated (int index);
|
||||||
|
void expiry_warning_message ();
|
||||||
void not_GA_warning_message ();
|
void not_GA_warning_message ();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
Reference in New Issue
Block a user