Changeset 10097 for trunk/src/comctl32/draglist.cpp
- Timestamp:
- May 15, 2003, 4:25:14 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/draglist.cpp
r7175 r10097 1 /* $Id: draglist.cpp,v 1. 3 2001-10-23 21:42:23sandervl Exp $ */1 /* $Id: draglist.cpp,v 1.4 2003-05-15 14:25:12 sandervl Exp $ */ 2 2 /* 3 3 * Drag List control … … 98 98 99 99 lpDragInfo = (LPDRAGLIST_INFO)GetPropA(hwnd, (LPCSTR)COMCTL32_aSubclass); 100 101 // 2002-03-08 PH 102 // this will definately crash 103 #ifdef __WIN32OS2__ 104 if(!lpDragInfo) 105 { 106 if(IsWindowUnicode( hwnd )) 107 return DefWindowProcW(hwnd, uMsg, wParam, lParam); 108 else 109 return DefWindowProcA(hwnd, uMsg, wParam, lParam); 110 } 111 #else 100 112 if(!lpDragInfo) { 101 113 if(lpDragInfo->isUnicode) { … … 104 116 else return DefWindowProcA(hwnd, uMsg, wParam, lParam); 105 117 } 118 #endif 119 106 120 switch(uMsg) { 107 121 case WM_LBUTTONDOWN:
Note:
See TracChangeset
for help on using the changeset viewer.