summaryrefslogtreecommitdiff
path: root/noncore/settings
authorllornkcor <llornkcor>2002-04-20 03:15:10 (UTC)
committer llornkcor <llornkcor>2002-04-20 03:15:10 (UTC)
commita5a187837c30ba4e60a0f1c2374e683d2194a427 (patch) (unidiff)
treeaea27f50f1b23843f6d9f3bbab402870200f47dc /noncore/settings
parent6f3e6c46027418f3bbbd2f5f576dff354436765d (diff)
downloadopie-a5a187837c30ba4e60a0f1c2374e683d2194a427.zip
opie-a5a187837c30ba4e60a0f1c2374e683d2194a427.tar.gz
opie-a5a187837c30ba4e60a0f1c2374e683d2194a427.tar.bz2
hooked up user alert
Diffstat (limited to 'noncore/settings') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sound/soundsettings.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp
index 51522b3..c1918de 100644
--- a/noncore/settings/sound/soundsettings.cpp
+++ b/noncore/settings/sound/soundsettings.cpp
@@ -39,7 +39,8 @@ SoundSettings::SoundSettings( QWidget* parent, const char* name, WFlags fl )
39 mic->setValue(100-config.readNumEntry("Mic")); 39 mic->setValue(100-config.readNumEntry("Mic"));
40 touchsound->setChecked(config.readBoolEntry("Touch")); 40 touchsound->setChecked(config.readBoolEntry("Touch"));
41 keysound->setChecked(config.readBoolEntry("Key")); 41 keysound->setChecked(config.readBoolEntry("Key"));
42 42 AlertCheckBox->setChecked(config.readBoolEntry("Alert"));
43
43 config.setGroup("Record"); 44 config.setGroup("Record");
44 int rate=config.readNumEntry("SampleRate", 22050); 45 int rate=config.readNumEntry("SampleRate", 22050);
45 if(rate == 11025) 46 if(rate == 11025)
@@ -95,7 +96,7 @@ void SoundSettings::accept()
95 config.writeEntry("Mic",100-mic->value()); 96 config.writeEntry("Mic",100-mic->value());
96 config.writeEntry("Touch",touchsound->isChecked()); 97 config.writeEntry("Touch",touchsound->isChecked());
97 config.writeEntry("Key",keysound->isChecked()); 98 config.writeEntry("Key",keysound->isChecked());
98 99 config.writeEntry("Alert",AlertCheckBox->isChecked());
99 setVolume(volume->value()); 100 setVolume(volume->value());
100 setMic(mic->value()); 101 setMic(mic->value());
101 102