| 174 | } |
| 175 | |
| 176 | QString ExportWorksheetDialog::path() const { |
| 177 | if (ui->cbExportTo->currentIndex() == 0) |
| 178 | return ui->leFileName->text(); |
| 179 | return {}; |
| 180 | } |
| 181 | |
| 182 | Worksheet::ExportFormat ExportWorksheetDialog::exportFormat() const { |
| 183 | return static_cast<Worksheet::ExportFormat>(ui->cbFormat->currentData().toInt()); |
no test coverage detected