Locale: refactor to update labels in one place only

This commit is contained in:
Adriaan de Groot 2017-06-05 09:31:53 -04:00 committed by Philip
parent 6adb590f5d
commit 945a96bb51

View File

@ -171,9 +171,7 @@ LocalePage::LocalePage( QWidget* parent )
!dlg->selectedLCLocale().isEmpty() )
{
m_selectedLocaleConfiguration.lang = dlg->selectedLCLocale();
m_localeLabel->setText( tr( "The system language will be set to %1." )
.arg( prettyLCLocale(
m_selectedLocaleConfiguration.lang ) ) );
this->updateLocaleLabels();
}
dlg->deleteLater();
@ -203,9 +201,7 @@ LocalePage::LocalePage( QWidget* parent )
m_selectedLocaleConfiguration.lc_measurement = dlg->selectedLCLocale();
m_selectedLocaleConfiguration.lc_identification = dlg->selectedLCLocale();
m_formatsLabel->setText( tr( "The numbers and dates locale will be set to %1." )
.arg( prettyLCLocale(
m_selectedLocaleConfiguration.lc_numeric ) ) );
this->updateLocaleLabels();
}
dlg->deleteLater();