Changeset 10545 for trunk/src


Ignore:
Timestamp:
Mar 18, 2004, 4:38:42 PM (21 years ago)
Author:
sandervl
Message:

updates

Location:
trunk/src/user32
Files:
2 edited

Legend:

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

    r10479 r10545  
    1 /* $Id: dc.cpp,v 1.127 2004-02-23 12:40:29 sandervl Exp $ */
     1/* $Id: dc.cpp,v 1.128 2004-03-18 15:38:41 sandervl Exp $ */
    22
    33/*
     
    11811181    else dprintf(("RedrawWindow %x %x %x %x", hwnd, pRect, hrgn, redraw));
    11821182
     1183    if(!IsWindowVisible(hwnd)) {
     1184         dprintf(("WARNING: Invisible window -> ignoring RedrawWindow call"));
     1185         return TRUE;
     1186    }
     1187
    11831188    if (hwnd == NULLHANDLE)
    11841189    {
  • trunk/src/user32/win32dlg.cpp

    r10379 r10545  
    1 /* $Id: win32dlg.cpp,v 1.82 2004-01-11 12:03:17 sandervl Exp $ */
     1/* $Id: win32dlg.cpp,v 1.83 2004-03-18 15:38:42 sandervl Exp $ */
    22/*
    33 * Win32 Dialog Code for OS/2
     
    910910
    911911    if (Win32DlgProc) {      /* Call dialog procedure */
    912         result = Win32DlgProc(getWindowHandle(), Msg, wParam, lParam);
     912        result = CallWindowProcA((WNDPROC)Win32DlgProc, getWindowHandle(), Msg, wParam, lParam);
    913913    }
    914914
     
    964964
    965965    if (Win32DlgProc) {      /* Call dialog procedure */
    966         result = Win32DlgProc(getWindowHandle(), Msg, wParam, lParam);
     966        result = CallWindowProcW((WNDPROC)Win32DlgProc, getWindowHandle(), Msg, wParam, lParam);
    967967    }
    968968
Note: See TracChangeset for help on using the changeset viewer.