| 97 | } |
| 98 | |
| 99 | void MainWindowPrivate::pluginDestroyed(QObject* pluginObj) |
| 100 | { |
| 101 | auto* plugin = static_cast<IPlugin*>(pluginObj); |
| 102 | KXMLGUIClient* p = m_pluginCustomClients.take(plugin); |
| 103 | m_mainWindow->guiFactory()->removeClient( p ); |
| 104 | delete p; |
| 105 | } |
| 106 | |
| 107 | MainWindowPrivate::~MainWindowPrivate() |
| 108 | { |
nothing calls this directly
no test coverage detected