Changeset 8629 for trunk/src


Ignore:
Timestamp:
Jun 10, 2002, 11:12:35 AM (23 years ago)
Author:
sandervl
Message:

Don't repaint groupbox in WM_SETFONT if control isn't visible

Location:
trunk/src/user32
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/button.cpp

    r7683 r8629  
    1 /* $Id: button.cpp,v 1.45 2001-12-26 11:35:38 sandervl Exp $ */
     1/* $Id: button.cpp,v 1.46 2002-06-10 09:12:35 sandervl Exp $ */
    22/* File: button.cpp -- Button type widgets
    33 *
     
    376376
    377377#ifdef __WIN32OS2__
    378   if ((dwStyle & 0x0f) == BS_GROUPBOX) {
     378  if ((dwStyle & 0x0f) == BS_GROUPBOX && IsWindowVisible(hwnd)) {
    379379    RECT rc;
    380380    TEXTMETRICA tm;
     
    11291129    //@YD: bugfix
    11301130    //CB: doesn't work!
    1131     start = sibling = GetNextDlgGroupItem( parent, hwnd, FALSE );
     1131    start = sibling = GetNextDlgGroupItem( parent, hwnd, TRUE );
    11321132    do
    11331133    {
  • trunk/src/user32/dbgwrap.cpp

    r7885 r8629  
    761761DEBUGWRAP4(IsIconic)
    762762DEBUGWRAP8(IsChild)
    763 DEBUGWRAP4(IsWindow)
     763DEBUGWRAP_LVL2_4(IsWindow)
    764764DEBUGWRAP4(IsWindowEnabled)
    765765DEBUGWRAP4(IsWindowUnicode)
  • trunk/src/user32/message.cpp

    r8608 r8629  
    1 /* $Id: message.cpp,v 1.3 2002-06-09 10:47:50 sandervl Exp $ */
     1/* $Id: message.cpp,v 1.4 2002-06-10 09:12:35 sandervl Exp $ */
    22/*
    33 * Win32 window message APIs for OS/2
  • trunk/src/user32/windlg.cpp

    r8542 r8629  
    1 /* $Id: windlg.cpp,v 1.33 2002-06-02 10:07:59 sandervl Exp $ */
     1/* $Id: windlg.cpp,v 1.34 2002-06-10 09:12:35 sandervl Exp $ */
    22/*
    33 * Win32 dialog apis for OS/2
     
    425425        return 0;
    426426    }
    427     dprintf(("USER32: GetDlgCtrlID %x", hwnd));
    428427    ret = dlgcontrol->getWindowId();
    429428    RELEASE_WNDOBJ(dlgcontrol);
Note: See TracChangeset for help on using the changeset viewer.