| 110 | } |
| 111 | |
| 112 | void MainWindowPrivate::removePlugin( IPlugin *plugin ) |
| 113 | { |
| 114 | Q_ASSERT( plugin ); |
| 115 | |
| 116 | pluginDestroyed(plugin); |
| 117 | disconnect(plugin, &IPlugin::destroyed, this, &MainWindowPrivate::pluginDestroyed); |
| 118 | |
| 119 | m_mainWindow->guiFactory()->removeClient( plugin ); |
| 120 | } |
| 121 | |
| 122 | void MainWindowPrivate::updateSourceFormatterGuiClient(bool hasFormatters) |
| 123 | { |
nothing calls this directly
no test coverage detected