author | skyhusker <skyhusker> | 2005-06-17 15:17:10 (UTC) |
---|---|---|
committer | skyhusker <skyhusker> | 2005-06-17 15:17:10 (UTC) |
commit | 59c9cc89634e83fee9a6ee7162500b3c4d294233 (patch) (unidiff) | |
tree | bb0bc772d505cb3da34f576772510fdfa601785f | |
parent | c36e39b5b1e450e64d4c38cb59e56048a2bec258 (diff) | |
download | opie-59c9cc89634e83fee9a6ee7162500b3c4d294233.zip opie-59c9cc89634e83fee9a6ee7162500b3c4d294233.tar.gz opie-59c9cc89634e83fee9a6ee7162500b3c4d294233.tar.bz2 |
Fix bug #1557
-rw-r--r-- | core/settings/light-and-power/light.cpp | 6 |
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 ) | |||
172 | 172 | ||
173 | // warnings | 173 | // warnings |
174 | config. setGroup ( "Warnings" ); | 174 | config. setGroup ( "Warnings" ); |
175 | warnintervalBox-> setValue ( config. readNumEntry ( "checkinterval", 10000 ) / 1000 ); | 175 | warnintervalBox-> setValue ( config. readNumEntry ( "check_interval", 10000 ) / 1000 ); |
176 | lowSpinBox-> setValue ( config. readNumEntry ( "powerverylow", 10 ) ); | 176 | lowSpinBox-> setValue ( config. readNumEntry ( "power_verylow", 10 ) ); |
177 | criticalSpinBox-> setValue ( config. readNumEntry ( "powercritical", 5 ) ); | 177 | criticalSpinBox-> setValue ( config. readNumEntry ( "power_critical", 5 ) ); |
178 | 178 | ||
179 | m_resettimer = new QTimer ( this ); | 179 | m_resettimer = new QTimer ( this ); |
180 | connect ( m_resettimer, SIGNAL( timeout()), this, SLOT( resetBacklight())); | 180 | connect ( m_resettimer, SIGNAL( timeout()), this, SLOT( resetBacklight())); |