- Timestamp:
- Sep 15, 1999, 8:03:46 PM (26 years ago)
- Location:
- trunk/src/user32/new
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wbase.cpp
r926 r944 1 /* $Id: win32wbase.cpp,v 1.1 5 1999-09-13 19:18:23dengert Exp $ */1 /* $Id: win32wbase.cpp,v 1.16 1999-09-15 18:03:46 dengert Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1002 1002 //****************************************************************************** 1003 1003 //****************************************************************************** 1004 ULONG Win32BaseWindow::MsgPaint(ULONG tmp1, ULONG tmp2) 1005 { 1006 return SendInternalMessageA(WM_PAINT, 0, 0); 1004 ULONG 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); 1007 1010 } 1008 1011 //****************************************************************************** -
trunk/src/user32/new/win32wbase.h
r896 r944 1 /* $Id: win32wbase.h,v 1.1 0 1999-09-09 18:08:19dengert Exp $ */1 /* $Id: win32wbase.h,v 1.11 1999-09-15 18:03:46 dengert Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 79 79 ULONG MsgButton(ULONG msg, ULONG ncx, ULONG ncy, ULONG clx, ULONG cly); 80 80 ULONG MsgMouseMove(ULONG keystate, ULONG x, ULONG y); 81 ULONG MsgPaint(ULONG tmp1, ULONG tmp2);81 ULONG MsgPaint(ULONG tmp1, BOOL select = TRUE); 82 82 ULONG MsgEraseBackGround(HDC hdc); 83 83 ULONG MsgSetText(LPSTR lpsz, LONG cch);
Note:
See TracChangeset
for help on using the changeset viewer.