Removed unused EventManager class member from Insight and InsightWorker

This commit is contained in:
Nav
2022-03-20 18:01:46 +00:00
parent 8067762d38
commit db51d5e4c5
5 changed files with 2 additions and 10 deletions

View File

@@ -40,7 +40,6 @@ namespace Bloom
*/
explicit Insight(
EventListener& eventListener,
EventManager& eventManager,
const ProjectConfig& projectConfig,
const EnvironmentConfig& environmentConfig,
const InsightConfig& insightConfig,
@@ -68,11 +67,10 @@ namespace Bloom
InsightProjectSettings& insightProjectSettings;
EventManager& eventManager;
EventListener& eventListener;
QApplication application;
InsightWorker* insightWorker = new InsightWorker(this->eventManager);
InsightWorker* insightWorker = new InsightWorker();
InsightWindow* mainWindow = new InsightWindow(
*(this->insightWorker),
this->environmentConfig,