MCPcopy Create free account
hub / github.com/KDE/kdevelop / unload

Method unload

plugins/grepview/grepviewplugin.cpp:106–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104}
105
106void GrepViewPlugin::unload()
107{
108 for (const QPointer<GrepDialog>& p : std::as_const(m_currentDialogs)) {
109 if (p) {
110 p->reject();
111 p->deleteLater();
112 }
113 }
114
115 core()->uiController()->removeToolView(m_factory);
116}
117
118void GrepViewPlugin::startSearch(const QString& pattern, const QString& directory, bool show)
119{

Callers

nothing calls this directly

Calls 3

rejectMethod · 0.80
uiControllerMethod · 0.80
removeToolViewMethod · 0.45

Tested by

no test coverage detected