summaryrefslogtreecommitdiff
path: root/noncore/settings/language/language.cpp
authormickeyl <mickeyl>2004-09-08 21:38:59 (UTC)
committer mickeyl <mickeyl>2004-09-08 21:38:59 (UTC)
commitf0fdb800d57e9a1d95ba593185e9462300539eea (patch) (side-by-side diff)
treeab3c3620dfb6395c87ed97748609a5b47311c7bd /noncore/settings/language/language.cpp
parent189f40847bbaaed928cb99d64f51f708c96a967b (diff)
downloadopie-f0fdb800d57e9a1d95ba593185e9462300539eea.zip
opie-f0fdb800d57e9a1d95ba593185e9462300539eea.tar.gz
opie-f0fdb800d57e9a1d95ba593185e9462300539eea.tar.bz2
don't need confirmance if started in first-usage mode
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
@@ -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()