Changeset 856
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/filldir.c ¶
r850 r856 39 39 13 Aug 07 SHL Sync code with other FilesToGet usage and optimize 40 40 13 Aug 07 SHL Move #pragma alloc_text to end for OpenWatcom compat 41 04 Nov 07 GKY Use commaFmtULL to display large file sizes 41 42 42 43 ***********************************************************************/ … … 424 425 pci->pszDisplayName = p; 425 426 427 //comma format the file size for large file support 428 if(!fNoLargeFileSupport){ 429 CHAR szBuf[30]; 430 CommaFmtULL(szBuf, sizeof(szBuf), pffb->cbFile, ' '); 431 pci->pszFmtFileSize = xstrdup(szBuf, pszSrcFile, __LINE__); 432 } 433 426 434 // now fill the darned thing in... 427 435 pci->date.day = pffb->fdateLastWrite.day; … … 637 645 pci->pszDisplayName = p; 638 646 647 //comma format the file size for large file support 648 649 if(!fNoLargeFileSupport){ 650 CHAR szBuf[30]; 651 CommaFmtULL(szBuf, sizeof(szBuf), pfsa4->cbFile, ' '); 652 pci->pszFmtFileSize = xstrdup(szBuf, pszSrcFile, __LINE__); 653 } 639 654 pci->date.day = pfsa4->fdateLastWrite.day; 640 655 pci->date.month = pfsa4->fdateLastWrite.month; -
TabularUnified trunk/dll/fm3dll.h ¶
r851 r856 62 62 21 Aug 07 GKY Make Subject column in dircnr sizable and movable from the right to the left pane 63 63 01 Sep 07 GKY Add xDosSetPathInfo to fix case where FS3 buffer crosses 64k boundary 64 04 Nov 07 GKY Add pszFmtFileSize to CNRITEM to display large file sizes 64 65 65 66 ***********************************************************************/ … … 429 430 CTIME crtime; /* Creation time of file */ 430 431 CHAR *pszLongName; // Points to long name buffer - used by code and by CFA_STRING 432 CHAR *pszFmtFileSize; // Comma formatted file size for large file support 431 433 ULONGLONG cbFile; /* File size */ 432 434 ULONGLONG easize; // Size of EAs - dirsize uses this - hack cough -
TabularUnified trunk/dll/init.c ¶
r850 r856 924 924 fSaveMiniCmds = fUserComboBox = fFM2Deletes = fConfirmTarget = 925 925 fShowTarget = fDrivebarHelp = fCheckMM = TRUE; 926 #if 1// 06 Oct 07 SHL fixme to be gone after wrapper testing finished926 #if 0 // 06 Oct 07 SHL fixme to be gone after wrapper testing finished 927 927 fNoLargeFileSupport = TRUE; 928 928 #endif -
TabularUnified trunk/dll/misc.c ¶
r841 r856 503 503 504 504 pfi = pfi->pNextFieldInfo; 505 505 506 pfi->flData = CFA_STRING | CFA_LEFT | CFA_SEPARATOR; 506 507 pfi->flTitle = CFA_LEFT; … … 552 553 // Fill in column information for the file size 553 554 554 pfi = pfi->pNextFieldInfo; 555 pfi->flData = CFA_ULONG | CFA_RIGHT | CFA_SEPARATOR | CFA_FIREADONLY; 556 pfi->flTitle = CFA_CENTER; 557 pfi->pTitleData = GetPString(IDS_SIZE); 558 pfi->offStruct = FIELDOFFSET(CNRITEM, cbFile); 555 if(fNoLargeFileSupport) { 556 pfi = pfi->pNextFieldInfo; 557 pfi->flData = CFA_ULONG | CFA_RIGHT | CFA_SEPARATOR | CFA_FIREADONLY; 558 pfi->flTitle = CFA_CENTER; 559 pfi->pTitleData = GetPString(IDS_SIZE); 560 pfi->offStruct = FIELDOFFSET(CNRITEM, cbFile); 561 } 562 else { 563 pfi = pfi->pNextFieldInfo; 564 pfi->flData = CFA_STRING | CFA_RIGHT | CFA_SEPARATOR | CFA_FIREADONLY; 565 pfi->flTitle = CFA_CENTER; 566 pfi->pTitleData = GetPString(IDS_SIZE); 567 pfi->offStruct = FIELDOFFSET(CNRITEM, pszFmtFileSize); 568 } 559 569 560 570 // Fill in the column information for the file's ea size
Note:
See TracChangeset
for help on using the changeset viewer.