| 197 | } |
| 198 | |
| 199 | void JSPluginManager::showPluginSelectorWindow(JSPluginModule *moduleData, const QPoint &pt) |
| 200 | { |
| 201 | QString guid = moduleData->spec()->guid(); |
| 202 | JSPluginSelectorWindow *selectorWindow = new JSPluginSelectorWindow(*m_mainWindow, moduleData, nullptr); |
| 203 | selectorWindow->setAttribute(Qt::WA_DeleteOnClose); |
| 204 | moduleData->emitShowEvent(); |
| 205 | selectorWindow->showAtPoint(pt); |
| 206 | } |
| 207 | |
| 208 | void JSPluginManager::showPluginMainTabView(JSPluginModule *moduleData) |
| 209 | { |
nothing calls this directly
no test coverage detected