| 34 | } |
| 35 | |
| 36 | void HelpWindow::readSettings() |
| 37 | { |
| 38 | QSettings settings; |
| 39 | if (settings.value("Main/SaveRestorePositions", false).toBool()) |
| 40 | { |
| 41 | resize(settings.value("HelpViewer/WindowSize", QSize(600, 700)).toSize()); |
| 42 | move(settings.value("HelpViewer/WindowPos", QPoint(50, 50)).toPoint()); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | void HelpWindow::writeSettings() |
| 47 | { |
nothing calls this directly
no outgoing calls
no test coverage detected