| 202 | } |
| 203 | |
| 204 | ClangSupport::~ClangSupport() |
| 205 | { |
| 206 | parseLock()->lockForWrite(); |
| 207 | // By locking the parse-mutexes, we make sure that parse jobs get a chance to finish in a good state |
| 208 | parseLock()->unlock(); |
| 209 | |
| 210 | const auto& mimeTypes = DocumentFinderHelpers::mimeTypesList(); |
| 211 | for (const auto& type : mimeTypes) { |
| 212 | KDevelop::IBuddyDocumentFinder::removeFinder(type); |
| 213 | } |
| 214 | |
| 215 | ClangIntegration::DUChainUtils::unregisterDUChainItems(); |
| 216 | } |
| 217 | |
| 218 | KDevelop::ConfigPage* ClangSupport::configPage(int number, QWidget* parent) |
| 219 | { |
nothing calls this directly
no test coverage detected