summaryrefslogtreecommitdiff
path: root/noncore/settings/sound/soundsettings.h
Unidiff
Diffstat (limited to 'noncore/settings/sound/soundsettings.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sound/soundsettings.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/settings/sound/soundsettings.h b/noncore/settings/sound/soundsettings.h
index 7679c1e..aec7614 100644
--- a/noncore/settings/sound/soundsettings.h
+++ b/noncore/settings/sound/soundsettings.h
@@ -18,31 +18,34 @@
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#ifndef SOUNDSETTINGS_H 20#ifndef SOUNDSETTINGS_H
21#define SOUNDSETTINGS_H 21#define SOUNDSETTINGS_H
22 22
23 23
24#include "soundsettingsbase.h" 24#include "soundsettingsbase.h"
25 25
26 26
27class SoundSettings : public SoundSettingsBase 27class SoundSettings : public SoundSettingsBase
28{ 28{
29Q_OBJECT 29Q_OBJECT
30 30
31public: 31public:
32 SoundSettings( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 32 SoundSettings( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
33 33
34protected: 34protected:
35 void accept(); 35 void accept();
36 void reject(); 36 void reject();
37 void updateStorageCombo();
37 38
38private slots: 39private slots:
40 void setLocation(const QString &);
41
39 void setVolume(int); 42 void setVolume(int);
40 void setMic(int); 43 void setMic(int);
41 44
42 void volumeChanged( bool muted ); 45 void volumeChanged( bool muted );
43 void micChanged( bool muted ); 46 void micChanged( bool muted );
44}; 47};
45 48
46 49
47#endif // SOUNDSETTINGS_H 50#endif // SOUNDSETTINGS_H
48 51