| 312 | } |
| 313 | |
| 314 | void MainWindowImpl::importIcoFile() |
| 315 | { |
| 316 | QString path = IniSettings::latestOpenedDir(); |
| 317 | |
| 318 | QString fileName = QFileDialog::getOpenFileName(this, |
| 319 | tr("Open Icon file"), path, tr("Microsoft icon (*.ico *.icon)")); |
| 320 | |
| 321 | if (!fileName.isEmpty()) |
| 322 | openMultipageFile(fileName); |
| 323 | } |
| 324 | |
| 325 | void MainWindowImpl::importPdfFile() |
| 326 | { |
nothing calls this directly
no outgoing calls
no test coverage detected