| 1057 | |
| 1058 | |
| 1059 | void DebuggerUI::checkFocusDebuggerConsole() |
| 1060 | { |
| 1061 | auto context = UIContext::activeContext(); |
| 1062 | if (!context) |
| 1063 | return; |
| 1064 | |
| 1065 | auto globalArea = context->globalArea(); |
| 1066 | if (!globalArea) |
| 1067 | return; |
| 1068 | |
| 1069 | auto widget = globalArea->widget("Debugger Console"); |
| 1070 | if (widget) |
| 1071 | globalArea->focusWidget("Debugger Console"); |
| 1072 | } |
| 1073 | |
| 1074 | |
| 1075 | void DebuggerUI::updateUI(const DebuggerEvent& event) |
nothing calls this directly
no outgoing calls
no test coverage detected