summaryrefslogtreecommitdiff
path: root/noncore/settings/language/language.cpp
Unidiff
Diffstat (limited to 'noncore/settings/language/language.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/language/language.cpp23
1 files changed, 8 insertions, 15 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
@@ -95,17 +95,10 @@ void LanguageSettings::accept()
95{ 95{
96 switch( QMessageBox::warning( this, "Language", 96 Config c( "qpe" );
97 "Attention, all windows will be closed\n" 97 c.setGroup( "Startup" );
98 "by changing the language\n" 98 if ( ( c.readNumEntry( "FirstUse", 42 ) == 0 ) &&
99 "without saving the Data.\n\n" 99 ( QMessageBox::warning( this, "Language", "Attention, all windows will be closed\nby changing the language\n"
100 "Go on?", 100 "without saving the Data.\n\nGo on?", "Ok", "Cancel", 0, 0, 1 ) ) )
101 "Ok", "Cancel", 0, 101 return;
102 0, 1 )) 102 applyLanguage();
103 { 103 QDialog::accept();
104 case 0: // OK
105 applyLanguage();
106 QDialog::accept();
107 break;
108 case 1: // Abbruch
109 break;
110 }
111} 104}