| 1812 | } |
| 1813 | |
| 1814 | void SettingsWindow::on_pushButton_ReloadPlugins_clicked() |
| 1815 | { |
| 1816 | foreach(Plugin* plugin, _plugins){ |
| 1817 | plugin->Stop(); |
| 1818 | } |
| 1819 | ui->list_Plugins->clear(); |
| 1820 | _plugins.clear(); |
| 1821 | ui->pushButton_ReloadPlugins->setEnabled(false); |
| 1822 | emit reloadPlugins(); |
| 1823 | } |
| 1824 | |
| 1825 | void SettingsWindow::MoveUpPlugin() { |
| 1826 | DEBUG_LOW_LEVEL << Q_FUNC_INFO; |
nothing calls this directly
no test coverage detected