Changeset 846 for trunk/dll/info.c
- Timestamp:
- Sep 27, 2007, 11:16:00 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/info.c
r841 r846 22 22 25 Aug 07 SHL Drop list from FILESTUF - data not static 23 23 25 Aug 07 SHL IconProc: do not use freed memory - random bad things happen 24 27 Sep 07 SHL Correct ULONGLONG size formatting 24 25 25 26 ***********************************************************************/ … … 692 693 WinSetDlgItemText(hwnd, FLE_LASTACCESS, s); 693 694 } 695 // 27 Sep 07 SHL fixme to use CommaFmtULL 696 // 27 Sep 07 SHL fixme to not format numbers in IDS_SIZEINCLEASTEXT 694 697 sprintf(s, 695 698 GetPString(IDS_SIZEINCLEASTEXT), … … 697 700 CBLIST_TO_EASIZE(fs.cbList), 698 701 fs.cbFile + CBLIST_TO_EASIZE(fs.cbList), 699 ( fs.cbFile + CBLIST_TO_EASIZE(fs.cbList)) / 1024);702 (ULONG)((fs.cbFile + CBLIST_TO_EASIZE(fs.cbList)) / 1024)); 700 703 WinSetDlgItemText(hwnd, FLE_SIZES, s); 701 sprintf(s, "%lub", fs.cbFileAlloc - fs.cbFile); 704 // 27 Sep 07 SHL fixme to use CommaFmtULL 705 sprintf(s, "%llub", fs.cbFileAlloc - fs.cbFile); 702 706 WinSetDlgItemText(hwnd, FLE_SLACK, s); 703 707 WinCheckButton(hwnd,
Note:
See TracChangeset
for help on using the changeset viewer.