From 848245508017ed7e17168f0312afa4d70fa7c891 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 10 Jun 2018 20:36:36 +1000 Subject: [PATCH] Fix QSettings ApplicationName was getting reset --- sleepyhead/main.cpp | 2 -- sleepyhead/sleepyhead.pro | 2 ++ sleepyhead/translation.cpp | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/sleepyhead/main.cpp b/sleepyhead/main.cpp index f03cab21..695db185 100644 --- a/sleepyhead/main.cpp +++ b/sleepyhead/main.cpp @@ -141,8 +141,6 @@ int main(int argc, char *argv[]) initTranslations(); initializeStrings(); // Important, call this AFTER translator is installed. - a.setApplicationName(STR_TR_SleepyHead); - //////////////////////////////////////////////////////////////////////////////////////////// // OpenGL Detection diff --git a/sleepyhead/sleepyhead.pro b/sleepyhead/sleepyhead.pro index 0dcfbf4a..3768f6cd 100644 --- a/sleepyhead/sleepyhead.pro +++ b/sleepyhead/sleepyhead.pro @@ -32,6 +32,8 @@ DEFINES += LOCK_RESMED_SESSIONS CONFIG += c++11 CONFIG += rtti + +# Remove this crap because it sucks CONFIG-=debug_and_release #static { diff --git a/sleepyhead/translation.cpp b/sleepyhead/translation.cpp index 41699e0e..6163dc25 100644 --- a/sleepyhead/translation.cpp +++ b/sleepyhead/translation.cpp @@ -55,6 +55,7 @@ void initTranslations() { langNames["fr"] = "\x46\x72\x61\x6e\xc3\xa7\x61\x69\x73"; langNames["en_UK"] = "English (UK)"; langNames["en_US"] = "English (US)"; + langNames["nl"] = "Nederlands"; // CHECK: Will the above break with MS VisualC++ compiler? QHash langFiles;