connect(ui->qcbox_signal, SIGNAL(currentIndexChanged(QString)), this, SLOT(changeBounds(QString)));
connect(ui->qle_destPath, SIGNAL(textChanged(QString)), this, SLOT(onFileNameChanged(QString)));
- ui->qle_destPath->setText(m_lastUsedPath);
- ui->qle_width->setText(m_locale.toString(params.width));
- ui->qle_height->setText(m_locale.toString(params.height));
- ui->qle_dpi->setText(m_locale.toString(params.dpi));
- ui->qcbox_outputFormat->setCurrentIndex(params.formatIdx);
- ui->qck_includeInteg->setChecked(params.includePeaks);
-
ui->qle_width->setLocale(m_locale);
ui->qle_height->setLocale(m_locale);
ui->qle_dpi->setLocale(m_locale);
ui->qle_toX->setLocale(m_locale);
ui->qle_toY->setLocale(m_locale);
+ ui->qle_destPath->setText(m_lastUsedPath);
+ ui->qle_width->setText(m_locale.toString(params.width));
+ ui->qle_height->setText(m_locale.toString(params.height));
+ ui->qle_dpi->setText(m_locale.toString(params.dpi));
+ ui->qcbox_outputFormat->setCurrentIndex(params.formatIdx);
+ ui->qck_includeInteg->setChecked(params.includePeaks);
+
m_intValidator = new QIntValidator(this);
if (m_intValidator != nullptr) {
m_intValidator->setLocale(m_locale);