Changeset 1537
- Timestamp:
 - Nov 1, 1999, 5:18:05 PM (26 years ago)
 - Location:
 - trunk
 - Files:
 - 
      
- 2 edited
 
- 
          
  changelog (modified) (2 diffs)
 - 
          
  src/user32/window.cpp (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/changelog
r1534 r1537 1 /* $Id: changelog,v 1.392 1999-10-31 21:44:06 hugh Exp $ */ 2 3 99-10-29 Markus Montkowski <mmontkowski@gmx.de> 4 - GDI32: Fixed bug in CreateDIBSection, only copy ptr when ptr. var not 5 NULL. 6 Added DIBSections to GetObject_A, so programms can query 7 a DIBSECTION for the obj. 1 /* $Id: changelog,v 1.393 1999-11-01 16:18:03 dengert Exp $ */ 2 3 99-11-01: Daniela Engert <dani@ngrt.de> 4 - USER32: add WS_CLIPSIBLINGS to not-WS_GROUP style STATIC controls 5 (fixes missing text in WELCOME) 6 7 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 8 9 This is a hack! 10 11 Dialog controls which contain/surround other controls *need* to be 12 created with the WS_CLIPSIBLINGS style. 13 14 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 15 16 99-10-31: Christoph Bratschi <cbratschi@datacomm.ch> 17 - KERNEL32: Ported Wine time apis 18 19 99-10-31: Daniela Engert <dani@ngrt.de> 20 - USER32: add WS_CLIPSIBLINGS to BS_GROUPBOX style controls (fixes 21 missing buttons in SOL) 22 23 99-10-31: Sander van Leeuwen <sandervl@xs4all.nl> 24 - USER32: Remove CS_SYNCPAINT class flag -> fixes VPBuddy resize + paint 25 Put back methods that belong in the Win32Dialog class. 26 (MapDialogRect, DIALOG_Init, several x & y unit helpers) 27 -> fixes calc window controls. 8 28 9 29 99-10-30: Christoph Bratschi <cbratschi@datacomm.ch> … … 13 33 fixed scrollbar timer handling 14 34 pmframe: fixed WM_ACTIVATE bug 35 36 99-10-29 Markus Montkowski <mmontkowski@gmx.de> 37 - GDI32: Fixed bug in CreateDIBSection, only copy ptr when ptr. var not 38 NULL. 39 Added DIBSections to GetObject_A, so programms can query 40 a DIBSECTION for the obj. 15 41 16 42 99-10-30: Daniela Engert <dani@ngrt.de>  - 
      
trunk/src/user32/window.cpp
r1530 r1537 1 /* $Id: window.cpp,v 1.3 0 1999-10-31 17:53:55 cbratschiExp $ */1 /* $Id: window.cpp,v 1.31 1999-11-01 16:18:05 dengert Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 87 87 } 88 88 #endif 89 if (!strcmpi(className, "BUTTON") && ((style & 0x0f) == BS_GROUPBOX)) 89 if ((!strcmpi(className, "BUTTON") && ((style & 0x0f) == BS_GROUPBOX)) || 90 ((!strcmpi(className, "STATIC")) && !(style & WS_GROUP))) 90 91 style |= WS_CLIPSIBLINGS; 91 92  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  