From 4e1cc7a828c8b56f75f03cd037ec3b5a893b9188 Mon Sep 17 00:00:00 2001 From: llornkcor Date: Sun, 23 Jun 2002 19:46:28 +0000 Subject: fixed config handling --- (limited to 'noncore/settings/sound') 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,9 +102,10 @@ 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 &))); + connect( keyComboBox,SIGNAL(activated(const QString &)),this,SLOT( setKeyButton(const QString &))); + connect( timeLimitComboBox,SIGNAL(activated( const QString &)),this,SLOT( setSizeLimitButton(const QString &))); // connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); } @@ -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(); } -- cgit v0.9.0.2