summaryrefslogtreecommitdiff
path: root/noncore/applets/brightnessapplet/brightnessapplet.cpp
Side-by-side diff
Diffstat (limited to 'noncore/applets/brightnessapplet/brightnessapplet.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/applets/brightnessapplet/brightnessapplet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/applets/brightnessapplet/brightnessapplet.cpp b/noncore/applets/brightnessapplet/brightnessapplet.cpp
index 5aaa27e..90fde05 100644
--- a/noncore/applets/brightnessapplet/brightnessapplet.cpp
+++ b/noncore/applets/brightnessapplet/brightnessapplet.cpp
@@ -151,40 +151,40 @@ BrightnessApplet::BrightnessApplet( QWidget *parent, const char *name )
{
setFixedHeight( AppLnk::smallIconSize() );
setFixedWidth( AppLnk::smallIconSize() );
_pixmap.convertFromImage( Resource::loadImage( "brightnessapplet/icon" ).smoothScale( height(), width() ) );
_control = new BrightnessAppletControl( this, "control" );
}
void BrightnessApplet::writeSystemBrightness(int brightness)
{
PowerStatus ps = PowerStatusManager::readStatus();
- Config cfg("qpe");
+ Config cfg( "apm" );
if (ps.acStatus() == PowerStatus::Online) {
cfg.setGroup("AC");
} else {
cfg.setGroup("Battery");
}
cfg.writeEntry("Brightness", brightness);
odebug << "writing brightness " << brightness << oendl;
cfg.write();
}
int BrightnessApplet::readSystemBrightness(void)
{
PowerStatus ps = PowerStatusManager::readStatus();
- Config cfg("qpe");
+ Config cfg( "apm" );
if (ps.acStatus() == PowerStatus::Online) {
cfg.setGroup("AC");
} else {
cfg.setGroup("Battery");
}
odebug << "reading brightness " << cfg.readNumEntry("Brightness", 128) << oendl;
return cfg.readNumEntry("Brightness", 128);
}