- Timestamp:
- Nov 21, 1999, 3:00:48 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/treeview.c
r1783 r1793 1 /* $Id: treeview.c,v 1.1 8 1999-11-19 19:16:24achimha Exp $ */1 /* $Id: treeview.c,v 1.19 1999-11-21 14:00:48 achimha Exp $ */ 2 2 /* Treeview control 3 3 * … … 1708 1708 // TRACE (treeview,"(%p,%s)\n", &tvItem->pszText, tvItem->pszText); 1709 1709 len = lstrlenA (tvItem->pszText)+1; 1710 // AH: Win95 regedit creates items with 10 as the last character1711 // 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 }1717 1710 wineItem->pszText= COMCTL32_Alloc (len+1); 1718 1711 lstrcpyA (wineItem->pszText, tvItem->pszText);
Note:
See TracChangeset
for help on using the changeset viewer.