diff options
author | Laurent Montel <lmontel@mandriva.org> | 2001-09-03 12:31:28 +0000 |
---|---|---|
committer | Laurent Montel <lmontel@mandriva.org> | 2001-09-03 12:31:28 +0000 |
commit | ed286febdd283a138e19f8ac1a0121b54616b9f6 (patch) | |
tree | 0b703c5aedc29d5f46f9204205f058e4d64e3733 /krootwarning | |
parent | f7fea408aeb64bd17e2414edf0f3872f7f3522fb (diff) | |
download | common-data-ed286febdd283a138e19f8ac1a0121b54616b9f6.tar common-data-ed286febdd283a138e19f8ac1a0121b54616b9f6.tar.gz common-data-ed286febdd283a138e19f8ac1a0121b54616b9f6.tar.bz2 common-data-ed286febdd283a138e19f8ac1a0121b54616b9f6.tar.xz common-data-ed286febdd283a138e19f8ac1a0121b54616b9f6.zip |
Forgot to update
Diffstat (limited to 'krootwarning')
-rw-r--r-- | krootwarning/krootwarning/krootwarning.cpp | 8 |
1 files 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.")+"<br></qt>",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() |