-rw-r--r-- | library/qpeapplication.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 5f61c0c..cf437da 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -174,6 +174,6 @@ static void setVolume(int t=0, int percent=-1) case 0: { - Config cfg("Sound"); - cfg.setGroup("System"); + Config cfg("qpe"); + cfg.setGroup("Volume"); if ( percent < 0 ) - percent = cfg.readNumEntry("Volume",50); + percent = cfg.readNumEntry("VolumePercent",50); int fd = 0; @@ -194,4 +194,4 @@ static void setMic(int t=0, int percent=-1) case 0: { - Config cfg("Sound"); - cfg.setGroup("System"); + Config cfg("qpe"); + cfg.setGroup("Volume"); if ( percent < 0 ) |