- Timestamp:
- Jun 10, 2002, 11:12:35 AM (23 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/button.cpp
r7683 r8629 1 /* $Id: button.cpp,v 1.4 5 2001-12-26 11:35:38sandervl Exp $ */1 /* $Id: button.cpp,v 1.46 2002-06-10 09:12:35 sandervl Exp $ */ 2 2 /* File: button.cpp -- Button type widgets 3 3 * … … 376 376 377 377 #ifdef __WIN32OS2__ 378 if ((dwStyle & 0x0f) == BS_GROUPBOX ) {378 if ((dwStyle & 0x0f) == BS_GROUPBOX && IsWindowVisible(hwnd)) { 379 379 RECT rc; 380 380 TEXTMETRICA tm; … … 1129 1129 //@YD: bugfix 1130 1130 //CB: doesn't work! 1131 start = sibling = GetNextDlgGroupItem( parent, hwnd, FALSE );1131 start = sibling = GetNextDlgGroupItem( parent, hwnd, TRUE ); 1132 1132 do 1133 1133 { -
trunk/src/user32/dbgwrap.cpp
r7885 r8629 761 761 DEBUGWRAP4(IsIconic) 762 762 DEBUGWRAP8(IsChild) 763 DEBUGWRAP 4(IsWindow)763 DEBUGWRAP_LVL2_4(IsWindow) 764 764 DEBUGWRAP4(IsWindowEnabled) 765 765 DEBUGWRAP4(IsWindowUnicode) -
trunk/src/user32/message.cpp
r8608 r8629 1 /* $Id: message.cpp,v 1. 3 2002-06-09 10:47:50sandervl Exp $ */1 /* $Id: message.cpp,v 1.4 2002-06-10 09:12:35 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window message APIs for OS/2 -
trunk/src/user32/windlg.cpp
r8542 r8629 1 /* $Id: windlg.cpp,v 1.3 3 2002-06-02 10:07:59sandervl Exp $ */1 /* $Id: windlg.cpp,v 1.34 2002-06-10 09:12:35 sandervl Exp $ */ 2 2 /* 3 3 * Win32 dialog apis for OS/2 … … 425 425 return 0; 426 426 } 427 dprintf(("USER32: GetDlgCtrlID %x", hwnd));428 427 ret = dlgcontrol->getWindowId(); 429 428 RELEASE_WNDOBJ(dlgcontrol);
Note:
See TracChangeset
for help on using the changeset viewer.