| 323 | } |
| 324 | |
| 325 | void TabStructures::onAnalysisItemDone(QTreeWidgetItem *item) |
| 326 | { |
| 327 | qbufs.push_back(item); |
| 328 | quint64 ns = elapsed.nsecsElapsed(); |
| 329 | if (ns > nextupdate) |
| 330 | { |
| 331 | nextupdate = ns + updt * 1e6; |
| 332 | QTimer::singleShot(updt, this, &TabStructures::onBufferTimeout); |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | void TabStructures::onAnalysisQuadDone(QTreeWidgetItem *item) |
| 337 | { |
nothing calls this directly
no outgoing calls
no test coverage detected