| 192 | } |
| 193 | |
| 194 | int ExportWorksheetDialog::exportResolution() const { |
| 195 | if (ui->cbResolution->currentIndex() == 0) |
| 196 | return GuiTools::dpi(this).first; |
| 197 | else |
| 198 | return ui->cbResolution->currentText().toInt(); |
| 199 | } |
| 200 | |
| 201 | void ExportWorksheetDialog::slotButtonClicked(QAbstractButton* button) { |
| 202 | if (button == m_okButton) |
no test coverage detected