Changeset 7207 for trunk/src


Ignore:
Timestamp:
Oct 25, 2001, 6:01:37 PM (24 years ago)
Author:
sandervl
Message:

ListView: LVM_SETITEMA: update item even when 'new' text is the same.

File:
1 edited

Legend:

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

    r7170 r7207  
    22122212      if (lpLVItem->pszText)
    22132213      {
     2214#ifdef __WIN32OS2__
     2215        //SvL: NT's COMCTL32 seems to always update the item, regardless of
     2216        //     whether the string is different or not.
     2217        //     Some apps depends on this (CVP)
     2218        uChanged |= LVIF_TEXT;
     2219#else
    22142220        if (lpItem->pszText)
    22152221        {
     
    22232229          uChanged |= LVIF_TEXT;
    22242230        }
     2231#endif
    22252232      }
    22262233      else
Note: See TracChangeset for help on using the changeset viewer.