From ed286febdd283a138e19f8ac1a0121b54616b9f6 Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Mon, 3 Sep 2001 12:31:28 +0000 Subject: Forgot to update --- krootwarning/krootwarning/krootwarning.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/krootwarning/krootwarning/krootwarning.cpp b/krootwarning/krootwarning/krootwarning.cpp index adce90a..e375dd7 100644 --- a/krootwarning/krootwarning/krootwarning.cpp +++ b/krootwarning/krootwarning/krootwarning.cpp @@ -71,7 +71,7 @@ void Krootwarning::initInterface() +i18n("to the system.")+"
",page); grid->addMultiCellWidget(info,0,7,1,1); - m_showAtTheNewStartUp=new QCheckBox( i18n("Don't show this window again."), page); + m_showAtTheNewStartUp=new QCheckBox( i18n("Show this window again."), page); grid->addMultiCellWidget(m_showAtTheNewStartUp,8,8,0,1); resize(400,280); @@ -104,7 +104,7 @@ void Krootwarning::initInterface() if (y + gh > dh) y = dh - gh; move( x < 0 ? 0 : x, y < 0 ? 0 : y ); - + m_showAtTheNewStartUp->setChecked(false); loadConfig(); } @@ -122,7 +122,7 @@ void Krootwarning::loadConfig() if( config->hasGroup("Parameter" ) ) { config->setGroup( "Parameter" ); - m_showAtTheNewStartUp->setChecked(config->readBoolEntry("ShowWindowAtTheNextStartUp",false)); + m_showAtTheNewStartUp->setChecked(config->readBoolEntry("DontShowWindowAtTheNextStartUp",false)); } } @@ -137,7 +137,7 @@ void Krootwarning::saveConfig() { KConfig* config=kapp->config(); config->setGroup( "Parameter" ); - config->writeEntry("ShowWindowAtTheNextStartUp", m_showAtTheNewStartUp->isChecked() ); + config->writeEntry("DontShowWindowAtTheNextStartUp", m_showAtTheNewStartUp->isChecked() ); } void Krootwarning::logout() -- cgit v1.2.1