PATCH: stop crashes in desktop mode

Mike Hearn mike at theoretic.com
Tue Sep 30 15:03:17 CDT 2003


On Tue, 2003-09-30 at 18:13, Alexandre Julliard wrote:
> The default is managed mode, and has been for a long time now.

I'm confused then -

[mike at littlegreen x11drv]$ cvs diff window.c
Index: window.c
===================================================================
RCS file: /home/wine/wine/dlls/x11drv/window.c,v
retrieving revision 1.57
diff -u -r1.57 window.c
--- window.c    5 Sep 2003 23:08:26 -0000       1.57
+++ window.c    30 Sep 2003 19:57:35 -0000
@@ -90,7 +90,7 @@
     if ((win->dwStyle & WS_CAPTION) == WS_CAPTION) return TRUE;
     if (win->dwStyle & WS_THICKFRAME) return TRUE;
     /* default: not managed */
-    return FALSE;
+    return TRUE;
 }
  
  
is_window_managed returns false if none of the conditions match. Is it
the case that one of the conditions will always cause it to return true?




More information about the wine-devel mailing list