diff -r ce1c7ad1f18b -r bcb43dc84c44 photosgallery/slideshow/view/src/shwslideshowbacklighttimer.cpp --- a/photosgallery/slideshow/view/src/shwslideshowbacklighttimer.cpp Mon Mar 15 12:40:30 2010 +0200 +++ b/photosgallery/slideshow/view/src/shwslideshowbacklighttimer.cpp Wed Mar 31 21:31:03 2010 +0300 @@ -84,14 +84,14 @@ GLX_LOG_ENTRY_EXIT("CShwSlideshowBackLightTimer::ConstructL"); CRepository* lightsRepo = CRepository::NewLC( KCRUidPeripheralSettings ); - // What's the timeout value (in seconds ) for the display light? + // Get display light's timeout value (in seconds ) lightsRepo->Get( KSettingsDisplayLightsTimeout, iSettingsDelay ); GLX_LOG_INFO1("CShwSlideshowBackLightTimer, lights timeout = %d", iSettingsDelay ); CleanupStack::PopAndDestroy( lightsRepo ); CRepository* scrSaverRepo = CRepository::NewLC( KCRUidPersonalizationSettings ); - // What's the screen saver's timeout value (in seconds)? + // Get screen saver's timeout value (in seconds) TInt screenSaverTimeout = 0; scrSaverRepo->Get( KSettingsScreenSaverPeriod, screenSaverTimeout ); GLX_LOG_INFO1("CShwSlideshowBackLightTimer, scr saver timeout = %d", @@ -101,7 +101,7 @@ // Take the smaller of the two timeout values iSettingsDelay = Min( iSettingsDelay, screenSaverTimeout ); - // Set the timeout delay to minimum value as it can not be zero! + // Set the timeout delay to minimum value as it can not be zero if (iSettingsDelay == 0) { iSettingsDelay = KMinTimeoutDelay;