Ignore:
Timestamp:
Nov 21, 1999, 3:00:48 PM (26 years ago)
Author:
achimha
Message:

undo LoadMessageA/W workaround

File:
1 edited

Legend:

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

    r1783 r1793  
    1 /* $Id: treeview.c,v 1.18 1999-11-19 19:16:24 achimha Exp $ */
     1/* $Id: treeview.c,v 1.19 1999-11-21 14:00:48 achimha Exp $ */
    22/* Treeview control
    33 *
     
    17081708//      TRACE (treeview,"(%p,%s)\n", &tvItem->pszText, tvItem->pszText);
    17091709      len = lstrlenA (tvItem->pszText)+1;
    1710       // AH: Win95 regedit creates items with 10 as the last character
    1711       // we don't want that to appear...
    1712       if (*(tvItem->pszText + len - 2) == 10)
    1713       {
    1714 //        *(tvItem->pszText + len - 2) = 0;
    1715         dprintf(("item has character 10 at end, removed: %s\n", tvItem->pszText));
    1716       }
    17171710      wineItem->pszText= COMCTL32_Alloc (len+1);
    17181711      lstrcpyA (wineItem->pszText, tvItem->pszText);
Note: See TracChangeset for help on using the changeset viewer.