renamed *Manager classes

This commit is contained in:
fourtf
2018-06-28 19:51:07 +02:00
parent 2df142bd50
commit 8ced5a1e25
30 changed files with 131 additions and 131 deletions
+6 -6
View File
@@ -45,19 +45,19 @@ void Application::construct()
// 1. Instantiate all classes
this->settings = getSettings();
this->paths = PathManager::getInstance();
this->paths = Paths::getInstance();
this->themes = new ThemeManager;
this->themes = new Themes;
this->windows = new WindowManager;
this->logging = new LoggingManager;
this->logging = new Logging;
this->commands = new CommandController;
this->highlights = new HighlightController;
this->ignores = new IgnoreController;
this->taggedUsers = new TaggedUsersController;
this->accounts = new AccountController;
this->emotes = new EmoteManager;
this->fonts = new FontManager;
this->resources = new ResourceManager;
this->emotes = new Emotes;
this->fonts = new Fonts;
this->resources = new Resources;
this->moderationActions = new ModerationActions;
this->twitch.server = new TwitchServer;