| 118 | } |
| 119 | |
| 120 | bool MainWindow::saveAs() |
| 121 | { |
| 122 | QString fileName = QFileDialog::getSaveFileName(this, tr("Save As"), |
| 123 | curFile); |
| 124 | if (fileName.isEmpty()) |
| 125 | return false; |
| 126 | |
| 127 | return saveFile(fileName); |
| 128 | } |
| 129 | |
| 130 | void MainWindow::saveSelectionToReadableFile() |
| 131 | { |
nothing calls this directly
no outgoing calls
no test coverage detected