Ignore:
Timestamp:
May 16, 2001, 9:42:26 AM (24 years ago)
Author:
sandervl
Message:

WM_SETREDRAW fix

File:
1 edited

Legend:

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

    r5713 r5721  
    1 /* $Id: win32wbase.cpp,v 1.256 2001-05-15 14:31:39 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.257 2001-05-16 07:42:26 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    14201420            setStyle(getStyle() | WS_VISIBLE);
    14211421            dprintf(("Enable window update for %x", getWindowHandle()));
    1422             OSLibWinEnableWindowUpdate(OS2Hwnd,TRUE);
     1422            OSLibWinEnableWindowUpdate(OS2HwndFrame, OS2Hwnd, TRUE);
    14231423        }
    14241424        else
     
    14281428                setStyle(getStyle() & ~WS_VISIBLE);
    14291429                dprintf(("Disable window update for %x", getWindowHandle()));
    1430                 OSLibWinEnableWindowUpdate(OS2Hwnd,FALSE);
     1430                OSLibWinEnableWindowUpdate(OS2HwndFrame, OS2Hwnd, FALSE);
    14311431            }
    14321432        }
Note: See TracChangeset for help on using the changeset viewer.