Changeset 1058 for trunk/src/comctl32/comctl32undoc.c
- Timestamp:
- Sep 26, 1999, 1:01:11 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/comctl32undoc.c
r722 r1058 1 /* $Id: comctl32undoc.c,v 1.1 1 1999-08-28 09:25:56achimha Exp $ */1 /* $Id: comctl32undoc.c,v 1.12 1999-09-26 11:01:08 achimha Exp $ */ 2 2 /* 3 3 * Undocumented functions from COMCTL32.DLL … … 12 12 */ 13 13 14 /* WINE 990 815level */14 /* WINE 990923 level */ 15 15 16 16 /* CB: todo … … 689 689 /* resize the block of memory */ 690 690 nNewItems = 691 hdsa->nGrow * ((INT)((nIndex- 1) / hdsa->nGrow) + 1);691 hdsa->nGrow * ((INT)(((nIndex + 1) - 1) / hdsa->nGrow) + 1); 692 692 nSize = hdsa->nItemSize * nNewItems; 693 693 … … 1195 1195 /* resize the block of memory */ 1196 1196 INT nNewItems = 1197 hdpa->nGrow * ((INT)((i- 1) / hdpa->nGrow) + 1);1197 hdpa->nGrow * ((INT)(((i+1) - 1) / hdpa->nGrow) + 1); 1198 1198 INT nSize = nNewItems * sizeof(LPVOID); 1199 1199
Note:
See TracChangeset
for help on using the changeset viewer.