wip changes

This commit is contained in:
fourtf
2018-06-13 13:27:10 +02:00
parent b2ca38b479
commit 01f3f401ac
11 changed files with 475 additions and 387 deletions
+3 -1
View File
@@ -57,7 +57,7 @@ void Application::construct()
// 1. Instantiate all classes
this->settings = new singletons::SettingManager;
this->paths = new singletons::PathManager(this->argc, this->argv);
this->paths = singletons::PathManager::getInstance();
this->themes = new singletons::ThemeManager;
this->windows = new singletons::WindowManager;
this->logging = new singletons::LoggingManager;
@@ -89,7 +89,9 @@ void Application::initialize()
// 2. Initialize/load classes
this->settings->initialize();
#ifdef Q_OS_WIN
this->nativeMessaging->registerHost();
#endif
this->settings->load();
this->commands->load();