Changeset 1498 for trunk/dll/dirsize.c
- Timestamp:
- Jan 18, 2010, 1:57:01 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/dirsize.c
r1482 r1498 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2001, 20 09Steven H. Levine9 Copyright (c) 2001, 2010 Steven H. Levine 10 10 11 11 16 Oct 02 SHL Handle large partitions … … 51 51 aren't user settable; realappname should be used for setting applicable to 52 52 one or more miniapp but not to FM/2 53 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *. 53 54 54 55 ***********************************************************************/ … … 528 529 ULONG size = sizeof(SWP); 529 530 530 PrfQueryProfileData(fmprof, FM3Str, "DirSizes.Position", (PVOID) &swp, &size);531 PrfQueryProfileData(fmprof, (CHAR *) FM3Str, "DirSizes.Position", (PVOID) &swp, &size); 531 532 swp.fl &= ~SWP_SIZE; // 04 Feb 09 SHL ignore saved size 532 533 WinSetWindowPos(hwnd, … … 606 607 } 607 608 else 608 WinSetDlgItemText(hwnd, 609 DSZ_FREESPACE, GetPString(IDS_FREESPACEUTEXT)); 609 WinSetDlgItemText(hwnd, DSZ_FREESPACE, (CHAR *) GetPString(IDS_FREESPACEUTEXT)); 610 610 } 611 611 } … … 1019 1019 1020 1020 WinQueryWindowPos(hwnd, &swp); 1021 PrfWriteProfileData(fmprof, FM3Str, "DirSizes.Position", (PVOID) &swp, 1022 size); 1021 PrfWriteProfileData(fmprof, (CHAR *) FM3Str, "DirSizes.Position", (PVOID) &swp, size); 1023 1022 } 1024 1023 pState = INSTDATA(hwnd);
Note:
See TracChangeset
for help on using the changeset viewer.