Changeset 985 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Sep 19, 1999, 8:33:32 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r963 r985 1 /* $Id: win32wbase.cpp,v 1. 2 1999-09-17 18:49:53 dengertExp $ */1 /* $Id: win32wbase.cpp,v 1.3 1999-09-19 18:33:32 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1020 1020 1021 1021 if (hdcErase == 0) 1022 hdcErase = O32_GetDC(OS2Hwnd);1022 hdcErase = GetDC(Win32Hwnd); 1023 1023 1024 1024 if(isIcon) … … 1027 1027 rc = SendInternalMessageA(WM_ERASEBKGND, hdcErase, 0); 1028 1028 if (hdc == 0) 1029 O32_ReleaseDC(OS2Hwnd, hdcErase);1029 ReleaseDC(Win32Hwnd, hdcErase); 1030 1030 return (rc); 1031 1031 } … … 1465 1465 { 1466 1466 dprintf(("Win32BaseWindow::SetIcon %x", hIcon)); 1467 return OSLibWinSetIcon(OS2HwndFrame, hIcon); 1467 if(OSLibWinSetIcon(OS2HwndFrame, hIcon) == TRUE) { 1468 SendInternalMessageA(WM_SETICON, hIcon, 0); 1469 return TRUE; 1470 } 1471 return FALSE; 1468 1472 } 1469 1473 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.