| 228 | delete showFlowAction; |
| 229 | } |
| 230 | void MainWindowViewer::loadConfiguration() |
| 231 | { |
| 232 | settings = new QSettings(YACReader::getSettingsPath() + "/YACReader.ini", QSettings::IniFormat); |
| 233 | |
| 234 | Configuration &config = Configuration::getConfiguration(); |
| 235 | config.load(settings); |
| 236 | currentDirectory = config.getDefaultPath(); |
| 237 | fullscreen = config.getFullScreen(); |
| 238 | } |
| 239 | |
| 240 | void MainWindowViewer::setupUI() |
| 241 | { |
nothing calls this directly
no test coverage detected