Ignore:
Timestamp:
Oct 28, 2001, 12:43:21 PM (24 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/listview.c

    r7240 r7244  
    988988#ifdef __WIN32OS2__
    989989    //SvL: An item can never be bigger than the client area
    990     GetClientRect(hwnd, &rect);
    991     nItemWidth = MIN(rect.left - rect.right, nItemWidth);
     990    if(GetClientRect(hwnd, &rect)) {
     991        nItemWidth = MIN(rect.right - rect.left, nItemWidth);
     992    }
    992993#endif
    993994  }
Note: See TracChangeset for help on using the changeset viewer.