| 300 | } |
| 301 | |
| 302 | QLocale::Language ExportSpreadsheetDialog::numberFormat() const { |
| 303 | if (ui->cbDecimalSeparator->currentIndex() == 0) |
| 304 | return QLocale::Language::C; |
| 305 | else |
| 306 | return QLocale::Language::German; |
| 307 | } |
| 308 | |
| 309 | void ExportSpreadsheetDialog::slotButtonClicked(QAbstractButton* button) { |
| 310 | if (button == m_okButton) |
no test coverage detected