[ros-diffs] [fireball] 25757: 30 seconds screensaver timeout is just simply wrong. Developers should have test-settings inside *their* working copies, not trunk/release branches. Set it to 10 minutes (default value in WinXP, iirc).

fireball at svn.reactos.org fireball at svn.reactos.org
Fri Feb 9 11:46:14 CET 2007


Author: fireball
Date: Fri Feb  9 13:46:13 2007
New Revision: 25757

URL: http://svn.reactos.org/svn/reactos?rev=25757&view=rev
Log:
30 seconds screensaver timeout is just simply wrong. Developers should have test-settings inside *their* working copies, not trunk/release branches.

Set it to 10 minutes (default value in WinXP, iirc).

Modified:
    branches/ros-branch-0_3_1/reactos/subsystems/win32/win32k/ntuser/winsta.c

Modified: branches/ros-branch-0_3_1/reactos/subsystems/win32/win32k/ntuser/winsta.c
URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_1/reactos/subsystems/win32/win32k/ntuser/winsta.c?rev=25757&r1=25756&r2=25757&view=diff
==============================================================================
--- branches/ros-branch-0_3_1/reactos/subsystems/win32/win32k/ntuser/winsta.c (original)
+++ branches/ros-branch-0_3_1/reactos/subsystems/win32/win32k/ntuser/winsta.c Fri Feb  9 13:46:13 2007
@@ -485,9 +485,9 @@
    /*
     * Initialize the new window station object
     */
-    WindowStationObject->ScreenSaverRunning = FALSE;
-	WindowStationObject->ScreenSaverTimeOut = 30;
-	WindowStationObject->FlatMenu = FALSE;
+   WindowStationObject->ScreenSaverRunning = FALSE;
+   WindowStationObject->ScreenSaverTimeOut = 10 * 60;
+   WindowStationObject->FlatMenu = FALSE;
 
    if(!(CurInfo = ExAllocatePool(PagedPool, sizeof(SYSTEM_CURSORINFO))))
    {




More information about the Ros-diffs mailing list