! opens the dialog for the export of the currently active worksheet, spreadsheet or matrix. */
| 2850 | opens the dialog for the export of the currently active worksheet, spreadsheet or matrix. |
| 2851 | */ |
| 2852 | void MainWin::exportDialog() { |
| 2853 | if (!m_currentAspectDock) |
| 2854 | return; |
| 2855 | |
| 2856 | AbstractPart* part = static_cast<ContentDockWidget*>(m_currentAspectDock)->part(); |
| 2857 | if (part->exportView()) |
| 2858 | statusBar()->showMessage(i18n("%1 exported", part->name())); |
| 2859 | } |
| 2860 | |
| 2861 | void MainWin::editFitsFileDialog() { |
| 2862 | auto* editDialog = new FITSHeaderEditDialog(this); |
nothing calls this directly
no test coverage detected