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@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?