| 128 | } |
| 129 | |
| 130 | void PluginListContextMenu::setESPLock(const QModelIndexList& indices, bool locked) |
| 131 | { |
| 132 | for (auto& idx : indices) { |
| 133 | if (m_core.pluginList()->isEnabled(idx.row())) { |
| 134 | m_core.pluginList()->lockESPIndex(idx.row(), locked); |
| 135 | } |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | void PluginListContextMenu::openOriginExplorer(const QModelIndexList& indices) |
| 140 | { |
nothing calls this directly
no test coverage detected