Changeset 1498 for trunk/dll/draglist.c
- Timestamp:
- Jan 18, 2010, 1:57:01 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/draglist.c
r1463 r1498 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2001, 20 08Steven H.Levine9 Copyright (c) 2001, 2010 Steven H.Levine 10 10 11 11 16 Oct 02 SHL DoFileDrag: don't free stack … … 25 25 12 Sep 09 GKY Fix (probably spurrious) error message generated on drag of 26 26 items from a pmmail mail message (PMERR_INVALID_PARAMETER) 27 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *. 27 28 28 29 ***********************************************************************/ … … 183 184 DItem.ulItemID = 1; 184 185 DItem.hstrType = DrgAddStrHandle(DRT_UNKNOWN); 185 DItem.hstrRMF = DrgAddStrHandle( DRMDRFLIST);186 DItem.hstrRMF = DrgAddStrHandle((CHAR *) DRMDRFLIST); 186 187 DItem.hstrContainerName = DrgAddStrHandle(szDir); 187 188 DItem.hstrSourceName = DrgAddStrHandle(szFile); … … 364 365 pDItem->hstrType = DrgAddStrHandle(DRT_UNKNOWN); 365 366 ok = pDItem->hstrType; 366 pDItem->hstrRMF = DrgAddStrHandle( DRMDRFLIST);367 pDItem->hstrRMF = DrgAddStrHandle((CHAR *) DRMDRFLIST); 367 368 ok = ok && pDItem->hstrRMF; 368 369 pDItem->hstrContainerName = DrgAddStrHandle(szBuffer); … … 440 441 pDItem->hstrType = DrgAddStrHandle(DRT_UNKNOWN); 441 442 ok = pDItem->hstrType; 442 pDItem->hstrRMF = DrgAddStrHandle( DRMDRFOS2FILE);443 pDItem->hstrRMF = DrgAddStrHandle((CHAR *) DRMDRFOS2FILE); 443 444 ok = ok && pDItem->hstrRMF; 444 445 pDItem->hstrContainerName = DrgAddStrHandle(arcfile); … … 479 480 pDItem->hstrType = DrgAddStrHandle(DRT_UNKNOWN); 480 481 ok = ok && pDItem->hstrType; 481 pDItem->hstrRMF = DrgAddStrHandle( DRMDRFFM2ARC);482 pDItem->hstrRMF = DrgAddStrHandle((CHAR *) DRMDRFFM2ARC); 482 483 ok = ok && pDItem->hstrRMF; 483 484 pDItem->hstrContainerName = DrgAddStrHandle(arcfile); … … 691 692 pDItem->hstrType = DrgAddStrHandle(DRT_UNKNOWN); 692 693 ok = pDItem->hstrType; 693 pDItem->hstrRMF = DrgAddStrHandle( DRMDRFLIST);694 pDItem->hstrRMF = DrgAddStrHandle((CHAR *) DRMDRFLIST); 694 695 ok = ok && pDItem->hstrRMF; 695 696 pDItem->hstrContainerName = DrgAddStrHandle(szBuffer);
Note:
See TracChangeset
for help on using the changeset viewer.