author | llornkcor <llornkcor> | 2002-06-23 19:46:28 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-06-23 19:46:28 (UTC) |
commit | 4e1cc7a828c8b56f75f03cd037ec3b5a893b9188 (patch) (side-by-side diff) | |
tree | 56757ef2c8c352ab170e8c67e203b1b8728c6cbe | |
parent | 7c4524d0ff6d329c1f5f76fa2e7a727e553d51c8 (diff) | |
download | opie-4e1cc7a828c8b56f75f03cd037ec3b5a893b9188.zip opie-4e1cc7a828c8b56f75f03cd037ec3b5a893b9188.tar.gz opie-4e1cc7a828c8b56f75f03cd037ec3b5a893b9188.tar.bz2 |
fixed config handling
-rw-r--r-- | noncore/settings/sound/soundsettings.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp index 759a469..5cb59c5 100644 --- a/noncore/settings/sound/soundsettings.cpp +++ b/noncore/settings/sound/soundsettings.cpp @@ -102,6 +102,7 @@ SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl ) connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int))); connect(qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) ); connect(qApp, SIGNAL( micChanged(bool) ), this, SLOT ( micChanged(bool) ) ); + connect( LocationComboBox,SIGNAL(activated(const QString &)),this,SLOT( setLocation(const QString &))); connect( keyComboBox,SIGNAL(activated(const QString &)),this,SLOT(setKeyButton(const QString &))); connect( timeLimitComboBox,SIGNAL(activated( const QString &)),this,SLOT(setSizeLimitButton(const QString &))); @@ -256,6 +257,12 @@ void SoundSettings::setKeyButton(const QString &name) { cfg.setGroup("Defaults"); cfg.writeEntry( "toggleKey", keyComboBox->currentItem() ); keyReset = TRUE; + if(keyComboBox->currentItem() == 1) + cfg.writeEntry( "hideIcon", 0 ); + else + cfg.writeEntry( "hideIcon", 1); + + cfg.write(); } |