From 5dd5ff501de85338256e6644d25fd4481878258f Mon Sep 17 00:00:00 2001 From: Roland Winklmeier Date: Thu, 14 Jul 2016 15:49:51 +0200 Subject: [PATCH] Initialize simulator plugin settings in CContextSimulator constructor --- src/blackcore/context/contextsimulatorimpl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/blackcore/context/contextsimulatorimpl.cpp b/src/blackcore/context/contextsimulatorimpl.cpp index f3227e6ce..4fa3c238e 100644 --- a/src/blackcore/context/contextsimulatorimpl.cpp +++ b/src/blackcore/context/contextsimulatorimpl.cpp @@ -52,6 +52,7 @@ namespace BlackCore this->setObjectName("CContextSimulator"); connect(&m_weatherManager, &CWeatherManager::weatherGridReceived, this, &CContextSimulator::weatherGridReceived); m_plugins->collectPlugins(); + restoreSimulatorPlugins(); } CContextSimulator *CContextSimulator::registerWithDBus(CDBusServer *server)