| 150 | |
| 151 | |
| 152 | DebuggerStatusBarWidget* DebuggerStatusBarContainer::currentConsole() const |
| 153 | { |
| 154 | if (m_consoleStack->currentIndex() == 0) |
| 155 | return nullptr; |
| 156 | |
| 157 | return qobject_cast<DebuggerStatusBarWidget*>(m_consoleStack->currentWidget()); |
| 158 | } |
| 159 | |
| 160 | |
| 161 | void DebuggerStatusBarContainer::freeDebuggerConsoleForView(QObject* obj) |
nothing calls this directly
no test coverage detected