author | clem <clem> | 2004-10-07 15:10:48 (UTC) |
---|---|---|
committer | clem <clem> | 2004-10-07 15:10:48 (UTC) |
commit | 33c90b7be9d675e8e5b39cfd569997bfcbb5decf (patch) (side-by-side diff) | |
tree | 1988ca942257233bd6f63cb893c573caf28e9ed7 | |
parent | 46ad0a2d02a09243474fca73c50a73e591b63f7b (diff) | |
download | opie-33c90b7be9d675e8e5b39cfd569997bfcbb5decf.zip opie-33c90b7be9d675e8e5b39cfd569997bfcbb5decf.tar.gz opie-33c90b7be9d675e8e5b39cfd569997bfcbb5decf.tar.bz2 |
fixed doxygen comment
-rw-r--r-- | core/launcher/screensaver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/launcher/screensaver.cpp b/core/launcher/screensaver.cpp index f818d62..094f388 100644 --- a/core/launcher/screensaver.cpp +++ b/core/launcher/screensaver.cpp @@ -155,49 +155,49 @@ void OpieScreenSaver::setIntervals ( int dim, int lightoff, int suspend ) else { m_enable_dim = ( dim > 0 ); m_enable_lightoff = ( lightoff > 0 ); m_enable_suspend = ( suspend > 0 ); m_onlylcdoff = config.readBoolEntry ( "LcdOffOnly", false ); } //odebug << "screen saver intervals: " << dim << " " << lightoff << " " << suspend << "" << oendl; v [ 0 ] = QMAX( 1000 * dim, 100 ); v [ 1 ] = QMAX( 1000 * lightoff, 100 ); v [ 2 ] = QMAX( 1000 * suspend, 100 ); v [ 3 ] = 0; if ( !dim && !lightoff && !suspend ) QWSServer::setScreenSaverInterval( 0 ); else QWSServer::setScreenSaverIntervals( v ); } /** * Set suspend time. Will read the dim and lcd-off times from the config file. * - * @param suspend time in seconds to go into APM suspend, -1 to + * @param interval time in seconds to go into APM suspend, -1 to * read value from config file, 0 to disable */ void OpieScreenSaver::setInterval ( int interval ) { setIntervals ( -1, -1, interval ); } void OpieScreenSaver::setMode ( int mode ) { if ( mode > m_disable_suspend ) setInterval ( -1 ); m_disable_suspend = mode; } /** * Set display brightness * * Get's default values for backlight, contrast and light sensor from config file. * * @param bright desired brighness (-1 to use automatic sensor data or value * from config file, -2 to toggle backlight on and off, -3 to * force backlight off) |