| 140 | } |
| 141 | |
| 142 | void Manager::updateReady(const IndexedString& url, const ReferencedTopDUContext& topContext) |
| 143 | { |
| 144 | qDebug() << "finished" << url.toUrl().toLocalFile() << "success: " << ( bool )topContext; |
| 145 | |
| 146 | std::cerr << "processed " << m_total - (m_waiting.size() - 1) << " out of " << m_total << "\n"; |
| 147 | dump(topContext); |
| 148 | |
| 149 | m_waiting.remove(url.toUrl()); |
| 150 | finishIfDone(); |
| 151 | } |
| 152 | |
| 153 | void Manager::dump(const ReferencedTopDUContext& topContext) |
| 154 | { |
nothing calls this directly
no test coverage detected