| 95 | } |
| 96 | |
| 97 | void Plugin::setEnabled(bool enable){ |
| 98 | DEBUG_LOW_LEVEL << Q_FUNC_INFO << enable; |
| 99 | QString key = this->_name+"/Enable"; |
| 100 | Settings::setValueMain(key,enable); |
| 101 | if (!enable) this->Stop(); |
| 102 | if (enable) this->Start(); |
| 103 | } |
| 104 | |
| 105 | |
| 106 | void Plugin::Start() |
no test coverage detected