summaryrefslogtreecommitdiff
path: root/core/settings
authorskyhusker <skyhusker>2005-06-17 15:17:10 (UTC)
committer skyhusker <skyhusker>2005-06-17 15:17:10 (UTC)
commit59c9cc89634e83fee9a6ee7162500b3c4d294233 (patch) (side-by-side diff)
treebb0bc772d505cb3da34f576772510fdfa601785f /core/settings
parentc36e39b5b1e450e64d4c38cb59e56048a2bec258 (diff)
downloadopie-59c9cc89634e83fee9a6ee7162500b3c4d294233.zip
opie-59c9cc89634e83fee9a6ee7162500b3c4d294233.tar.gz
opie-59c9cc89634e83fee9a6ee7162500b3c4d294233.tar.bz2
Fix bug #1557
Diffstat (limited to 'core/settings') (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/light-and-power/light.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/settings/light-and-power/light.cpp b/core/settings/light-and-power/light.cpp
index 1c61787..d0ac878 100644
--- a/core/settings/light-and-power/light.cpp
+++ b/core/settings/light-and-power/light.cpp
@@ -172,9 +172,9 @@ LightSettings::LightSettings( QWidget* parent, const char* name, WFlags )
// warnings
config. setGroup ( "Warnings" );
- warnintervalBox-> setValue ( config. readNumEntry ( "checkinterval", 10000 ) / 1000 );
- lowSpinBox-> setValue ( config. readNumEntry ( "powerverylow", 10 ) );
- criticalSpinBox-> setValue ( config. readNumEntry ( "powercritical", 5 ) );
+ warnintervalBox-> setValue ( config. readNumEntry ( "check_interval", 10000 ) / 1000 );
+ lowSpinBox-> setValue ( config. readNumEntry ( "power_verylow", 10 ) );
+ criticalSpinBox-> setValue ( config. readNumEntry ( "power_critical", 5 ) );
m_resettimer = new QTimer ( this );
connect ( m_resettimer, SIGNAL( timeout()), this, SLOT( resetBacklight()));