Fix QSettings ApplicationName was getting reset

This commit is contained in:
Mark Watkins 2018-06-10 20:36:36 +10:00
parent ed7294126c
commit 8482455080
3 changed files with 3 additions and 2 deletions

View File

@ -141,8 +141,6 @@ int main(int argc, char *argv[])
initTranslations(); initTranslations();
initializeStrings(); // Important, call this AFTER translator is installed. initializeStrings(); // Important, call this AFTER translator is installed.
a.setApplicationName(STR_TR_SleepyHead);
//////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////
// OpenGL Detection // OpenGL Detection

View File

@ -32,6 +32,8 @@ DEFINES += LOCK_RESMED_SESSIONS
CONFIG += c++11 CONFIG += c++11
CONFIG += rtti CONFIG += rtti
# Remove this crap because it sucks
CONFIG-=debug_and_release CONFIG-=debug_and_release
#static { #static {

View File

@ -55,6 +55,7 @@ void initTranslations() {
langNames["fr"] = "\x46\x72\x61\x6e\xc3\xa7\x61\x69\x73"; langNames["fr"] = "\x46\x72\x61\x6e\xc3\xa7\x61\x69\x73";
langNames["en_UK"] = "English (UK)"; langNames["en_UK"] = "English (UK)";
langNames["en_US"] = "English (US)"; langNames["en_US"] = "English (US)";
langNames["nl"] = "Nederlands";
// CHECK: Will the above break with MS VisualC++ compiler? // CHECK: Will the above break with MS VisualC++ compiler?
QHash<QString, QString> langFiles; QHash<QString, QString> langFiles;