| 851 | } |
| 852 | |
| 853 | void MainWindow::exportAs() |
| 854 | { |
| 855 | if (!d_exportDialog) { |
| 856 | d_exportDialog = new ExportDialog(d_driver, this); |
| 857 | } |
| 858 | |
| 859 | if (!verifyCanExport(ExportType::FULL)) { |
| 860 | return; |
| 861 | } |
| 862 | |
| 863 | d_exportDialog->setSourceFile(d_currentFileName); |
| 864 | d_exportDialog->open(); |
| 865 | } |
| 866 | |
| 867 | void MainWindow::exportPdf() |
| 868 | { |
nothing calls this directly
no test coverage detected