| 562 | } |
| 563 | |
| 564 | void ProcessDisconnected(DWORD processId) |
| 565 | { |
| 566 | QMetaObject::invokeMethod(This, [processId] |
| 567 | { |
| 568 | ui.processCombo->removeItem(ui.processCombo->findText(QString::number(processId, 16).toUpper() + ":", Qt::MatchStartsWith)); |
| 569 | }, Qt::BlockingQueuedConnection); |
| 570 | } |
| 571 | |
| 572 | void ThreadAdded(TextThread& thread) |
| 573 | { |
nothing calls this directly
no outgoing calls
no test coverage detected