| 30 | } |
| 31 | |
| 32 | bool Core::start() |
| 33 | { |
| 34 | Controller::instance(); |
| 35 | |
| 36 | auto actionLocator = new ActionLocator(this); |
| 37 | LocatorManager::instance()->registerLocator(actionLocator); |
| 38 | |
| 39 | QObject::connect(&dpf::Listener::instance(), &dpf::Listener::pluginsStarted, [=] { |
| 40 | uiController.doSwitch(MWNA_RECENT); |
| 41 | }); |
| 42 | |
| 43 | return true; |
| 44 | } |
| 45 | |
| 46 | dpf::Plugin::ShutdownFlag Core::stop() |
| 47 | { |
no test coverage detected