author | mickeyl <mickeyl> | 2004-01-04 23:36:39 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-01-04 23:36:39 (UTC) |
commit | 8b0be84aaf5da9b43ab6935c1939bf77caf0aa02 (patch) (unidiff) | |
tree | 794ed2440f4fdf35588c50d1858eacdda36d6c81 | |
parent | 68f09442c635da109c0f31888d4f42bd14e8de1f (diff) | |
download | opie-8b0be84aaf5da9b43ab6935c1939bf77caf0aa02.zip opie-8b0be84aaf5da9b43ab6935c1939bf77caf0aa02.tar.gz opie-8b0be84aaf5da9b43ab6935c1939bf77caf0aa02.tar.bz2 |
better not shutoff the display without shutting it on again :D
-rw-r--r-- | core/applets/rotateapplet/rotate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/applets/rotateapplet/rotate.cpp b/core/applets/rotateapplet/rotate.cpp index ea114bb..79098d4 100644 --- a/core/applets/rotateapplet/rotate.cpp +++ b/core/applets/rotateapplet/rotate.cpp | |||
@@ -77,9 +77,9 @@ void RotateApplet::channelReceived( const QCString &msg, const QByteArray & data | |||
77 | cfg.setGroup( PowerStatusManager::readStatus().acStatus() == PowerStatus::Online ? "AC" : "Battery" ); | 77 | cfg.setGroup( PowerStatusManager::readStatus().acStatus() == PowerStatus::Online ? "AC" : "Battery" ); |
78 | int action = cfg.readNumEntry( "CloseHingeAction", 0 ); | 78 | int action = cfg.readNumEntry( "CloseHingeAction", 0 ); |
79 | switch ( action ) | 79 | switch ( action ) |
80 | { | 80 | { |
81 | case 1: /* DISPLAY OFF */ ODevice::inst()->setDisplayStatus( false ); ODevice::inst()->setDisplayBrightness( 0 ); break; | 81 | case 1: /* DISPLAY OFF */ ODevice::inst()->setDisplayBrightness( 0 ); break; |
82 | case 2: /* SUSPEND */ ODevice::inst()->suspend(); break; | 82 | case 2: /* SUSPEND */ ODevice::inst()->suspend(); break; |
83 | default: /* IGNORE */ break; | 83 | default: /* IGNORE */ break; |
84 | } | 84 | } |
85 | qDebug( "RotateApplet::switchAction %d performed.", cfg.readNumEntry( "CloseHingeAction", 0 ) ); | 85 | qDebug( "RotateApplet::switchAction %d performed.", cfg.readNumEntry( "CloseHingeAction", 0 ) ); |