Changeset 1529 for trunk/src/user32/window.cpp
- Timestamp:
- Oct 31, 1999, 5:44:05 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/window.cpp
r1516 r1529 1 /* $Id: window.cpp,v 1.2 8 1999-10-30 10:55:16 sandervlExp $ */1 /* $Id: window.cpp,v 1.29 1999-10-31 16:44: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)) 90 style |= WS_CLIPSIBLINGS; 91 89 92 /* Create the window */ 90 93 cs.lpCreateParams = data; … … 175 178 dprintf(("CreateWindowEx32W: bad class name %04x\n", LOWORD(className))); 176 179 } 177 180 else dprintf(("CreateWindowEx32W: bad class name ")); 178 181 179 182 SetLastError(ERROR_INVALID_PARAMETER); … … 185 188 } 186 189 else dprintf(("CreateWindowExW: class %d parent %x (%d,%d) (%d,%d), %x %x", className, parent, x, y, width, height, style, exStyle)); 190 191 if (!strcmpi(className, L"BUTTON") && ((style & 0x0f) == BS_GROUPBOX)) 192 style |= WS_CLIPSIBLINGS; 187 193 188 194 /* Create the window */
Note:
See TracChangeset
for help on using the changeset viewer.