| 2859 | } |
| 2860 | |
| 2861 | void MainWin::editFitsFileDialog() { |
| 2862 | auto* editDialog = new FITSHeaderEditDialog(this); |
| 2863 | if (editDialog->exec() == QDialog::Accepted) { |
| 2864 | if (editDialog->saved()) |
| 2865 | statusBar()->showMessage(i18n("FITS files saved")); |
| 2866 | } |
| 2867 | } |
| 2868 | |
| 2869 | /*! |
| 2870 | adds a new file data source to the current project. |
nothing calls this directly
no test coverage detected