void MeteorShowersMgr::setEnablePlugin(const bool& b) { // we should never change the 'm_enablePlugin' member directly! // as it's a button on the toolbar, it must be sync with its StelAction StelActionMgr* actionMgr = StelApp::getInstance().getStelActionManager(); StelAction* action = actionMgr->findAction("actionShow_MeteorShowers"); action->setChecked(b); }
void HelpDialog::showShortcutsWindow() { StelAction* action = StelApp::getInstance().getStelActionManager()->findAction("actionShow_Shortcuts_Window_Global"); if (action) action->setChecked(true); }