Author: fireball
Date: Thu Aug 27 10:53:22 2009
New Revision: 42951

URL: http://svn.reactos.org/svn/reactos?rev=42951&view=rev
Log:
[winlogon]
- Don't even try to create new desktops if they aren't going to be used. This 
should assist in arwinss development (marked with a comment).

Modified:
    branches/arwinss/reactos/base/system/winlogon/wlx.c

Modified: branches/arwinss/reactos/base/system/winlogon/wlx.c
URL: 
http://svn.reactos.org/svn/reactos/branches/arwinss/reactos/base/system/winlogon/wlx.c?rev=42951&r1=42950&r2=42951&view=diff
==============================================================================
--- branches/arwinss/reactos/base/system/winlogon/wlx.c [iso-8859-1] (original)
+++ branches/arwinss/reactos/base/system/winlogon/wlx.c [iso-8859-1] Thu Aug 27 
10:53:22 2009
@@ -1060,7 +1060,8 @@
                ERR("WL: Failed to create Default desktop (%lu)\n", 
GetLastError());
                goto cleanup;
        }
-
+// multiple desktops commented out for arwinss development
+#if 0
        /*
         * Create the winlogon desktop
         */
@@ -1096,6 +1097,7 @@
        /* FIXME: big HACK */
        CloseDesktop(Session->WinlogonDesktop);
        CloseDesktop(Session->ScreenSaverDesktop);
+#endif
        Session->WinlogonDesktop = OpenDesktopW(L"Default", 0, FALSE, 
GENERIC_ALL);
        Session->ScreenSaverDesktop = OpenDesktopW(L"Default", 0, FALSE, 
GENERIC_ALL);
 


Reply via email to