Changeset 1428 for trunk/dll/treecnr.c
- Timestamp:
- Jun 8, 2009, 1:09:55 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/treecnr.c
r1426 r1428 66 66 12 Mar 09 SHL Use common SearchContainer 67 67 14 Mar 09 GKY Prevent execution of UM_SHOWME while drive scan is occuring 68 68 06 Jun 09 GKY Add option to show file system type or drive label in tree 69 06 Jun 09 GKY Status line to show file sys/label not shown in tree; shortened to fit split status 70 07 Jun 09 GKY Fixed double names in tree container when collapsed tree is accessed 71 before recursive scan 69 72 ***********************************************************************/ 70 73 … … 788 791 else 789 792 strcpy(szTmpLabel, volser.volumelabel); 790 791 sprintf(s, 792 GetPString(fShowSysType ? IDS_TREESTATUSSTART1TEXT : fShowLabel 793 ? IDS_TREESTATUSSTART2TEXT : IDS_TREESTATUSSTARTTEXT), 794 toupper(*pci->pszFileName), FileSystem, 795 szTmpLabel, volser.serial, szFree); 793 if (fSplitStatus) 794 sprintf(s, 795 GetPString(fShowSysType ? IDS_TREESTATUSSTART1TEXT : fShowLabel 796 ? IDS_TREESTATUSSTART2TEXT : IDS_TREESTATUSSTARTTEXT), 797 toupper(*pci->pszFileName), FileSystem, 798 szTmpLabel, volser.serial, szFree); 799 else { 800 strcat(s, " ["); 801 sprintf(&s[strlen(s)], 802 GetPString(fShowSysType ? IDS_TREESTATUSSTART1TEXT : fShowLabel 803 ? IDS_TREESTATUSSTART2TEXT : IDS_TREESTATUSSTARTTEXT), 804 toupper(*pci->pszFileName), FileSystem, 805 szTmpLabel, volser.serial, szFree); 806 strcat(s, "]"); 807 } 796 808 if (!fMoreButtons) { 797 809 if (*dcd->mask.szMask ||
Note:
See TracChangeset
for help on using the changeset viewer.