| 48 | std::map<UIContext*, std::unique_ptr<GlobalDebuggerUI>> g_contextMap; |
| 49 | |
| 50 | GlobalDebuggerUI::GlobalDebuggerUI(UIContext* context) : m_context(context) |
| 51 | { |
| 52 | m_window = context->mainWindow(); |
| 53 | if (m_window && m_window->statusBar()) |
| 54 | { |
| 55 | m_status = new DebuggerStatusBarContainer; |
| 56 | auto statusBar = m_window->statusBar(); |
| 57 | if (statusBar) |
| 58 | { |
| 59 | statusBar->addWidget(m_status); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | m_displayingGlobalAreaWidgets = false; |
| 64 | |
| 65 | SetupMenu(context); |
| 66 | } |
| 67 | |
| 68 | |
| 69 | GlobalDebuggerUI::~GlobalDebuggerUI() {} |
nothing calls this directly
no outgoing calls
no test coverage detected