| 104 | } |
| 105 | |
| 106 | void 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 | |
| 118 | void GrepViewPlugin::startSearch(const QString& pattern, const QString& directory, bool show) |
| 119 | { |
nothing calls this directly
no test coverage detected