| 35 | const u32 DEBUGGER_LAYOUT_FILE_VERSION_MINOR = 0; |
| 36 | |
| 37 | DockLayout::DockLayout( |
| 38 | QString name, |
| 39 | BreakPointCpu cpu, |
| 40 | bool is_default, |
| 41 | const std::string& base_name, |
| 42 | DockLayout::Index index) |
| 43 | : m_name(name) |
| 44 | , m_cpu(cpu) |
| 45 | , m_is_default(is_default) |
| 46 | , m_base_layout(base_name) |
| 47 | { |
| 48 | reset(); |
| 49 | save(index); |
| 50 | } |
| 51 | |
| 52 | DockLayout::DockLayout( |
| 53 | QString name, |
nothing calls this directly
no test coverage detected