Ignore:
Timestamp:
Sep 15, 1999, 8:03:46 PM (26 years ago)
Author:
dengert
Message:

Preparations for new RedrawWindow et.al.

File:
1 edited

Legend:

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

    r926 r944  
    1 /* $Id: win32wbase.cpp,v 1.15 1999-09-13 19:18:23 dengert Exp $ */
     1/* $Id: win32wbase.cpp,v 1.16 1999-09-15 18:03:46 dengert Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    10021002//******************************************************************************
    10031003//******************************************************************************
    1004 ULONG Win32BaseWindow::MsgPaint(ULONG tmp1, ULONG tmp2)
    1005 {
    1006     return SendInternalMessageA(WM_PAINT, 0, 0);
     1004ULONG Win32BaseWindow::MsgPaint(ULONG tmp1, BOOL select)
     1005{
     1006    if (select && isIcon)
     1007        return SendInternalMessageA(WM_PAINTICON, 0, 0);
     1008    else
     1009        return SendInternalMessageA(WM_PAINT, 0, 0);
    10071010}
    10081011//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.