diff --git a/main.cpp b/main.cpp index 2d30706..3ffd789 100644 --- a/main.cpp +++ b/main.cpp @@ -105,7 +105,8 @@ int main(int argc, char *argv[]) // that GUI has correct l18n // Override programs executable basename as application name. - a.setApplicationName ("WSJT-X"); + //a.setApplicationName ("WSJT-X"); + a.setApplicationName("FT8Call"); a.setApplicationVersion (version ()); #if QT_VERSION >= 0x050200 @@ -259,7 +260,7 @@ int main(int argc, char *argv[]) multi_settings.set_common_value (splash_flag_name, false); splash.close (); }); - splash.show (); + //splash.show (); a.processEvents (); } } @@ -328,7 +329,7 @@ int main(int argc, char *argv[]) // run the application UI MainWindow w(temp_dir, multiple, &multi_settings, &mem_jt9, downSampleFactor, &splash); w.show(); - splash.raise (); + //splash.raise (); QObject::connect (&a, SIGNAL (lastWindowClosed()), &a, SLOT (quit())); result = a.exec(); } diff --git a/mainwindow.cpp b/mainwindow.cpp index 6679f3a..cb2a796 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -913,9 +913,9 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple, minuteTimer.setSingleShot (true); minuteTimer.start (ms_minute_error () + 60 * 1000); - connect (&splashTimer, &QTimer::timeout, this, &MainWindow::splash_done); - splashTimer.setSingleShot (true); - splashTimer.start (20 * 1000); + //connect (&splashTimer, &QTimer::timeout, this, &MainWindow::splash_done); + //splashTimer.setSingleShot (true); + //splashTimer.start (20 * 1000); /* if(m_config.my_callsign()=="K1JT" or m_config.my_callsign()=="K9AN" or diff --git a/revision_utils.cpp b/revision_utils.cpp index 2ec5f73..18a0604 100644 --- a/revision_utils.cpp +++ b/revision_utils.cpp @@ -83,6 +83,6 @@ QString version (bool include_patch) QString program_title (QString const& revision) { - QString id {"FT8Call by KN4CRD a derivative of " + QCoreApplication::applicationName () + " v" + QCoreApplication::applicationVersion ()}; - return id + " " + revision + " by K1JT"; + QString id {"FT8Call by KN4CRD a derivative of WSJT-X v" + QCoreApplication::applicationVersion ()}; + return id + " " + revision + " by K1JT"; }