Changeset 6168 for trunk/src/user32/oslibwin.cpp
- Timestamp:
- Jul 4, 2001, 11:55:18 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r6156 r6168 1 /* $Id: oslibwin.cpp,v 1.10 4 2001-07-03 18:33:26sandervl Exp $ */1 /* $Id: oslibwin.cpp,v 1.105 2001-07-04 09:55:17 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 21 21 #include <win32type.h> 22 22 #include <winconst.h> 23 #include <winuser32.h> 23 24 #include "oslibwin.h" 24 25 #include "oslibutil.h" … … 494 495 BOOL OSLibWinSetIcon(HWND hwnd, HANDLE hIcon) 495 496 { 496 return (BOOL) WinSendMsg(hwnd, WM_SETICON, (MPARAM)hIcon, 0); 497 ULONG hIconOS2 = GetOS2Icon(hIcon); 498 if(hIconOS2) 499 return (BOOL) WinSendMsg(hwnd, WM_SETICON, (MPARAM)hIconOS2, 0); 500 return FALSE; 497 501 } 498 502 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.