Index: sources/ApplicationController.cpp =================================================================== diff -u -r4947841e8cdd7e72d4fe26e604f7e5061fb86d64 -rd9b9df9b23da89b4c27f4672ff6e7f570adcc48a --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 4947841e8cdd7e72d4fe26e604f7e5061fb86d64) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision d9b9df9b23da89b4c27f4672ff6e7f570adcc48a) @@ -162,12 +162,6 @@ connect(&_settingsWatcher, SIGNAL(finished ()), this , SLOT(onSettingsUpdate())); -// connect(&_settingsWatcher, SIGNAL(finished ()), -// this , SLOT(onLoadTranslation())); - - - - // Device Signal/Slots DEVICE_APP_INIT_CONNECTIONS_LIST @@ -532,14 +526,10 @@ */ void ApplicationController::initSettings() { - // That is enough to call to the I function here to create the object in the thread that Settings is leaving in, - // which currently is Application_Thread, since the Settings is created in that thread. - _Settings; - 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.read(); + return settings.readConfigurations(); }); _settingsWatcher.setFuture(mFuture); } @@ -778,10 +768,3 @@ institutionalRequest (); // send HD the institutional record request emit didPOSTPass (_post.isDone( )); // GuiController -> GuiView : didPOSTPass(bool) } - -void ApplicationController::onLoadTranslation() -{ - Storage::Settings settings; - settings.loadTranslation(); -} -