| 36 | } |
| 37 | |
| 38 | LogWindow::LogWindow(bool attach_to_main) |
| 39 | : QMainWindow() |
| 40 | , m_attached_to_main_window(attach_to_main) |
| 41 | { |
| 42 | restoreSize(); |
| 43 | createUi(); |
| 44 | |
| 45 | Log::SetHostOutputLevel(GetWindowLogLevel(), &LogWindow::logCallback); |
| 46 | } |
| 47 | |
| 48 | LogWindow::~LogWindow() = default; |
| 49 |
nothing calls this directly
no test coverage detected