Changeset 389 for trunk/src/user32/new/oslibgdi.cpp
- Timestamp:
- Jul 25, 1999, 10:19:05 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/oslibgdi.cpp
r385 r389 1 /* $Id: oslibgdi.cpp,v 1. 5 1999-07-24 14:01:44sandervl Exp $ */1 /* $Id: oslibgdi.cpp,v 1.6 1999-07-25 08:19:05 sandervl Exp $ */ 2 2 /* 3 3 * Window GDI wrapper functions for OS/2 … … 173 173 RECTLOS2 rectl; 174 174 175 MapWin32ToOS2Rectl(pRect, &rectl); 176 return WinInvalidateRect(hwnd, (PRECTL)&rectl, fIncludeChildren); 175 if(pRect) { 176 MapWin32ToOS2Rectl(pRect, &rectl); 177 return WinInvalidateRect(hwnd, (PRECTL)&rectl, fIncludeChildren); 178 } 179 return WinInvalidateRect(hwnd, NULL, fIncludeChildren); 177 180 } 178 181 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.