diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-05-18 15:47:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-18 15:47:17 +0200 |
commit | b883ce5c517e0d22d994ec894aa868d7e2392b06 (patch) | |
tree | 2408832b17b4b7e081017cfd585eeb5783b98081 /launcher/Application.cpp | |
parent | cc13310083fe8d0c3bb423fa3e31db7b1f7b25e1 (diff) | |
parent | a21bd41580ba8ba4c0052efa8196d617e7211335 (diff) | |
download | PrismLauncher-b883ce5c517e0d22d994ec894aa868d7e2392b06.tar.gz PrismLauncher-b883ce5c517e0d22d994ec894aa868d7e2392b06.tar.bz2 PrismLauncher-b883ce5c517e0d22d994ec894aa868d7e2392b06.zip |
Merge pull request #127 from Scrumplex/refactor-bump-qt5.12
Diffstat (limited to 'launcher/Application.cpp')
-rw-r--r-- | launcher/Application.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp index afb33a50..dc8a7b0d 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -223,9 +223,7 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv) setApplicationName(BuildConfig.LAUNCHER_NAME); setApplicationDisplayName(BuildConfig.LAUNCHER_DISPLAYNAME); setApplicationVersion(BuildConfig.printableVersionString()); - #if (QT_VERSION >= QT_VERSION_CHECK(5,7,0)) - setDesktopFileName(BuildConfig.LAUNCHER_DESKTOPFILENAME); - #endif + setDesktopFileName(BuildConfig.LAUNCHER_DESKTOPFILENAME); startTime = QDateTime::currentDateTime(); // Don't quit on hiding the last window |