Ignore:
Timestamp:
May 15, 2003, 4:25:14 PM (22 years ago)
Author:
sandervl
Message:

Wine resync

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:23 sandervl Exp $ */
     1/* $Id: draglist.cpp,v 1.4 2003-05-15 14:25:12 sandervl Exp $ */
    22/*
    33 * Drag List control
     
    9898
    9999  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
    100112  if(!lpDragInfo) {
    101113      if(lpDragInfo->isUnicode) {
     
    104116      else return DefWindowProcA(hwnd, uMsg, wParam, lParam);
    105117  }
     118#endif
     119 
    106120  switch(uMsg) {
    107121  case WM_LBUTTONDOWN:
Note: See TracChangeset for help on using the changeset viewer.