From f0fdb800d57e9a1d95ba593185e9462300539eea Mon Sep 17 00:00:00 2001 From: mickeyl Date: Wed, 08 Sep 2004 21:38:59 +0000 Subject: don't need confirmance if started in first-usage mode --- (limited to 'noncore') 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 - applyLanguage(); - QDialog::accept(); - break; - case 1: // Abbruch - break; - } + 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(); } void LanguageSettings::applyLanguage() -- cgit v0.9.0.2