Changeset 389 for trunk/src


Ignore:
Timestamp:
Jul 25, 1999, 10:19:05 AM (26 years ago)
Author:
sandervl
Message:

* empty log message *

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:44 sandervl Exp $ */
     1/* $Id: oslibgdi.cpp,v 1.6 1999-07-25 08:19:05 sandervl Exp $ */
    22/*
    33 * Window GDI wrapper functions for OS/2
     
    173173 RECTLOS2 rectl;
    174174
    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);
    177180}
    178181//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.