Index: sources/ApplicationController.cpp =================================================================== diff -u -rd9b9df9b23da89b4c27f4672ff6e7f570adcc48a -rcb71895ec67532240a7002d8f6268bc622710347 --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision d9b9df9b23da89b4c27f4672ff6e7f570adcc48a) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision cb71895ec67532240a7002d8f6268bc622710347) @@ -528,8 +528,7 @@ { QFuture mFuture = QtConcurrent::run( [=]() -> int { // made the call a lambda to make sure there is no function to accidentally being called, out of thread [developer safety]. //TODO The Settings shall be the Singleton SettingsController and modify the MSettings like the others. - Storage::Settings settings; - return settings.readConfigurations(); + return Storage::Settings::readConfigurations(); }); _settingsWatcher.setFuture(mFuture); }