----------------------------------------------------------------------------
| 4341 | } |
| 4342 | //---------------------------------------------------------------------------- |
| 4343 | void ConsoleDebugger::updateWindowData(enum QAsmView::UpdateType type) |
| 4344 | { |
| 4345 | if (type == QAsmView::UPDATE_ALL) |
| 4346 | { |
| 4347 | asmView->updateAssemblyView(); |
| 4348 | asmView->scrollToPC(); |
| 4349 | updateRegisterView(); |
| 4350 | } else if (type == QAsmView::UPDATE_NO_SCROLL) |
| 4351 | { |
| 4352 | asmView->updateAssemblyView(); |
| 4353 | updateRegisterView(); |
| 4354 | } |
| 4355 | |
| 4356 | windowUpdateReq = QAsmView::UPDATE_NONE; |
| 4357 | } |
| 4358 | //---------------------------------------------------------------------------- |
| 4359 | void ConsoleDebugger::queueUpdate(enum QAsmView::UpdateType type) |
| 4360 | { |
nothing calls this directly
no test coverage detected