summaryrefslogtreecommitdiff
path: root/core/settings/light-and-power/light.cpp
authorharlekin <harlekin>2002-10-27 18:17:54 (UTC)
committer harlekin <harlekin>2002-10-27 18:17:54 (UTC)
commit63894d36a26675655a4f74721ea1c19fb5e3e84c (patch) (side-by-side diff)
tree84336f7750ee018d975b7a00255dcf4dcdc51843 /core/settings/light-and-power/light.cpp
parent17888d7ee97ec67c3f8c0f69fa30930b5a634ace (diff)
downloadopie-63894d36a26675655a4f74721ea1c19fb5e3e84c.zip
opie-63894d36a26675655a4f74721ea1c19fb5e3e84c.tar.gz
opie-63894d36a26675655a4f74721ea1c19fb5e3e84c.tar.bz2
other never handling
Diffstat (limited to 'core/settings/light-and-power/light.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/light-and-power/light.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/core/settings/light-and-power/light.cpp b/core/settings/light-and-power/light.cpp
index d2618d9..bf94a21 100644
--- a/core/settings/light-and-power/light.cpp
+++ b/core/settings/light-and-power/light.cpp
@@ -78,14 +78,14 @@ LightSettings::LightSettings( QWidget* parent, const char* name, WFlags )
// battery spinboxes
interval = config.readNumEntry( "Interval_Dim", 20 );
if ( config.readNumEntry("Dim",1) == 0 ) {
- interval_dim->setSpecialValueText( tr("never") );
+ interval_dim->setValue( 0 );
} else {
interval_dim->setValue( interval );
}
interval = config.readNumEntry( "Interval_LightOff", 30 );
if ( config.readNumEntry("LightOff",1) == 0 ) {
- interval_lightoff->setSpecialValueText( tr("never") );
+ interval_lightoff->setValue( 0 );
} else {
interval_lightoff->setValue( interval );
}
@@ -93,8 +93,8 @@ LightSettings::LightSettings( QWidget* parent, const char* name, WFlags )
interval = config.readNumEntry( "Interval", 60 );
if ( interval > 3600 ) interval /= 1000; // compatibility (was millisecs)
- if ( config.readNumEntry("NoApm", 0) == 0 ) {
- interval_suspend->setSpecialValueText( tr("never") );
+ if ( config.readNumEntry("NoApm", 0 ) == 1 ) {
+ interval_suspend->setValue( 0 );
} else {
interval_suspend->setValue( interval );
}
@@ -118,14 +118,14 @@ LightSettings::LightSettings( QWidget* parent, const char* name, WFlags )
// ac spinboxes
interval = config.readNumEntry( "Interval_Dim", 20 );
if ( config.readNumEntry("Dim",1) == 0 ) {
- interval_dim_ac_3->setSpecialValueText( tr("never") );
+ interval_dim_ac_3->setValue( 0 );
} else {
interval_dim_ac_3->setValue( interval );
}
interval = config.readNumEntry( "Interval_LightOff", 30 );
if ( config.readNumEntry("LightOff",1) == 0 ) {
- interval_lightoff_ac_3->setSpecialValueText( tr("never") );
+ interval_lightoff_ac_3->setValue( 0 );
} else {
interval_lightoff_ac_3->setValue( interval );
}
@@ -134,8 +134,8 @@ LightSettings::LightSettings( QWidget* parent, const char* name, WFlags )
if ( interval > 3600 ) {
interval /= 1000; // compatibility (was millisecs)
}
- if ( config.readNumEntry("NoApm", 0) == 0 ) {
- interval_suspend_ac_3->setSpecialValueText( tr("never") );
+ if ( config.readNumEntry("NoApm", 1) == 1 ) {
+ interval_suspend_ac_3->setValue( 0 );
} else {
interval_suspend_ac_3->setValue( interval );
}