| 736 | { return QPair<QString, QString>(); } |
| 737 | |
| 738 | void CMakeManager::projectClosing(IProject* p) |
| 739 | { |
| 740 | const auto it = m_projects.constFind(p); |
| 741 | if (it != m_projects.cend()) { |
| 742 | cleanupTestSuites(it->testSuites, it->testSuiteJobs); |
| 743 | m_projects.erase(it); |
| 744 | } |
| 745 | |
| 746 | delete m_configureStatusMessages.take(p); // discard the message, because closing its project obsoletes it |
| 747 | } |
| 748 | |
| 749 | void CMakeManager::folderAdded(KDevelop::ProjectFolderItem* folder) |
| 750 | { |
nothing calls this directly
no test coverage detected