-rw-r--r-- | noncore/settings/language/language.cpp | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/noncore/settings/language/language.cpp b/noncore/settings/language/language.cpp index 8dff063..7707452 100644 --- a/noncore/settings/language/language.cpp +++ b/noncore/settings/language/language.cpp @@ -93,21 +93,14 @@ LanguageSettings::~LanguageSettings() void LanguageSettings::accept() { - switch( QMessageBox::warning( this, "Language", - "Attention, all windows will be closed\n" - "by changing the language\n" - "without saving the Data.\n\n" - "Go on?", - "Ok", "Cancel", 0, - 0, 1 )) - { - case 0: // OK + Config c( "qpe" ); + c.setGroup( "Startup" ); + if ( ( c.readNumEntry( "FirstUse", 42 ) == 0 ) && + ( QMessageBox::warning( this, "Language", "Attention, all windows will be closed\nby changing the language\n" + "without saving the Data.\n\nGo on?", "Ok", "Cancel", 0, 0, 1 ) ) ) + return; applyLanguage(); QDialog::accept(); - break; - case 1: // Abbruch - break; - } } void LanguageSettings::applyLanguage() |