- Timestamp:
 - Mar 18, 2004, 4:38:42 PM (22 years ago)
 - Location:
 - trunk/src/user32
 - Files:
 - 
      
- 2 edited
 
- 
          
  dc.cpp (modified) (2 diffs)
 - 
          
  win32dlg.cpp (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/user32/dc.cpp
r10479 r10545 1 /* $Id: dc.cpp,v 1.12 7 2004-02-23 12:40:29sandervl Exp $ */1 /* $Id: dc.cpp,v 1.128 2004-03-18 15:38:41 sandervl Exp $ */ 2 2 3 3 /* … … 1181 1181 else dprintf(("RedrawWindow %x %x %x %x", hwnd, pRect, hrgn, redraw)); 1182 1182 1183 if(!IsWindowVisible(hwnd)) { 1184 dprintf(("WARNING: Invisible window -> ignoring RedrawWindow call")); 1185 return TRUE; 1186 } 1187 1183 1188 if (hwnd == NULLHANDLE) 1184 1189 {  - 
      
trunk/src/user32/win32dlg.cpp
r10379 r10545 1 /* $Id: win32dlg.cpp,v 1.8 2 2004-01-11 12:03:17sandervl Exp $ */1 /* $Id: win32dlg.cpp,v 1.83 2004-03-18 15:38:42 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Dialog Code for OS/2 … … 910 910 911 911 if (Win32DlgProc) { /* Call dialog procedure */ 912 result = Win32DlgProc(getWindowHandle(), Msg, wParam, lParam);912 result = CallWindowProcA((WNDPROC)Win32DlgProc, getWindowHandle(), Msg, wParam, lParam); 913 913 } 914 914 … … 964 964 965 965 if (Win32DlgProc) { /* Call dialog procedure */ 966 result = Win32DlgProc(getWindowHandle(), Msg, wParam, lParam);966 result = CallWindowProcW((WNDPROC)Win32DlgProc, getWindowHandle(), Msg, wParam, lParam); 967 967 } 968 968  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  