| 577 | } |
| 578 | |
| 579 | QString MainWindow::GetLayoutPath(int layout) |
| 580 | { |
| 581 | QString filename = lit("DefaultLayout.config"); |
| 582 | |
| 583 | if(layout > 0) |
| 584 | filename = lit("Layout%1.config").arg(layout); |
| 585 | |
| 586 | return ConfigFilePath(filename); |
| 587 | } |
| 588 | |
| 589 | void MainWindow::on_action_Exit_triggered() |
| 590 | { |
nothing calls this directly
no test coverage detected