| 1575 | } |
| 1576 | |
| 1577 | void MainWindow::ShowLiveCapture(LiveCapture *live) |
| 1578 | { |
| 1579 | m_LiveCaptures.push_back(live); |
| 1580 | |
| 1581 | if(m_Ctx.HasCaptureDialog()) |
| 1582 | m_Ctx.AddDockWindow(live, DockReference::AddTo, m_Ctx.GetCaptureDialog()->Widget()); |
| 1583 | else |
| 1584 | m_Ctx.AddDockWindow(live, DockReference::MainToolArea, this); |
| 1585 | } |
| 1586 | |
| 1587 | void MainWindow::LiveCaptureClosed(LiveCapture *live) |
| 1588 | { |
no test coverage detected