wine bugs in win.c

kscho kscho at tibetsystem.com
Mon Dec 22 18:46:44 CST 2003


Hi~
I'm interested in wine. and find some bug...
window's caption is optional, but current is not. 
 
wine/windows/win.c 

line 1087
 /* Correct the window style - stage 2 */

    if (!(cs->style & WS_CHILD))
    {
 wndPtr->dwStyle |= WS_CLIPSIBLINGS;
 if (!(cs->style & WS_POPUP))
 {
  if(cs->style & WS_VISIBLE) // <- this is must be added, 
              wndPtr->dwStyle |= WS_CAPTION;
            wndPtr->flags |= WIN_NEED_SIZE;
 }
    }


----
John.




More information about the wine-bugs mailing list