| 290 | } |
| 291 | |
| 292 | void BuildProjectTool::cleanupBuildInfo(ProjectExplorer::Project *project) |
| 293 | { |
| 294 | if (!m_activeBuilds.contains(project)) { |
| 295 | return; |
| 296 | } |
| 297 | |
| 298 | BuildInfo info = m_activeBuilds.take(project); |
| 299 | |
| 300 | if (info.buildFinishedConnection) { |
| 301 | disconnect(info.buildFinishedConnection); |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | } // namespace QodeAssist::Tools |
nothing calls this directly
no outgoing calls
no test coverage detected