Changeset 1456
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/collect.c
r1442 r1456 67 67 06 Jun 09 GKY Add option to show file system type or drive label in tree 68 68 12 Jul 09 GKY Add szFSType to FillInRecordFromFSA use to bypass EA scan and size formatting 69 69 for tree container 70 70 13 Jul 09 GKY Fixed double free of memory buffer in UM_COLLECTFROMFILE 71 15 Sep 09 SHL Use UM_GREP when passing pathname 71 72 72 73 ***********************************************************************/ … … 839 840 dcd->ullTotalBytes += FillInRecordFromFSA(dcd->hwndCnr, pci, 840 841 fullname, 841 &fs4, FALSE, 0, dcd);842 &fs4, FALSE, NULL, dcd); 842 843 memset(&ri, 0, sizeof(RECORDINSERT)); 843 844 ri.cb = sizeof(RECORDINSERT); … … 1341 1342 } 1342 1343 CommaFmtULL(tb, sizeof(tb), pci->cbFile + pci->easize, ' '); 1343 1344 1344 if (!fMoreButtons) { 1345 DateFormat(szDate, pci->date); 1345 1346 sprintf(s, " %s %s %02u%s%02u%s%02u [%s] %s", 1346 1347 tb, szDate, pci->time.hours, TimeSeparator, pci->time.minutes, … … 1359 1360 } 1360 1361 if (fMoreButtons) { 1361 1362 1362 WinSetWindowText(hwndName, pci->pszFileName); 1363 DateFormat(szDate, pci->date); 1363 1364 sprintf(s, "%s %02u%s%02u%s%02u", 1364 1365 szDate, pci->time.hours, TimeSeparator, pci->time.minutes, … … 1944 1945 1945 1946 case IDM_GREP: 1947 case UM_GREP: 1946 1948 if (dcd->amextracted) { 1947 1949 saymsg(MB_OK | MB_ICONASTERISK, … … 1956 1958 if (GrepInfo) { 1957 1959 GrepInfo->hwnd = &hwnd; 1958 if (m p2)1960 if (msg == UM_GREP && mp2) 1959 1961 GrepInfo->szGrepPath = mp2; 1960 1962 if (WinDlgBox(HWND_DESKTOP, hwnd, GrepDlgProc, … … 2732 2734 } 2733 2735 CommaFmtULL(tb, sizeof(tb), pci->cbFile + pci->easize, ' '); 2734 2735 2736 if (!fMoreButtons) { 2737 DateFormat(szDate, pci->date); 2736 2738 sprintf(s, " %s %s %02u%s%02u%s%02u [%s] %s", 2737 2739 tb, szDate, pci->time.hours, TimeSeparator, 2738 2740 pci->time.minutes, TimeSeparator, pci->time.seconds, 2739 2740 2741 pci->pszDispAttr, p); 2742 } 2741 2743 else { 2742 2744 if (pci->cbFile + pci->easize > 1024) … … 2752 2754 } 2753 2755 if (fMoreButtons) { 2754 2755 2756 WinSetWindowText(hwndName, pci->pszFileName); 2757 DateFormat(szDate, pci->date); 2756 2758 sprintf(s, "%s %02u%s%02u%s%02u", 2757 2759 szDate, pci->time.hours, TimeSeparator, pci->time.minutes, -
trunk/dll/fm3dll2.h
r1455 r1456 741 741 #define UM_HIDENOTSELECTED (WM_USER + 73) 742 742 #define UM_FIRSTTIME (WM_USER + 74) 743 // #define UM_ACTIONSTATE (WM_USER + 75) // 13 Sep 09 SHL unusedSHL743 #define UM_GREP (WM_USER + 75) // 15 Sep 09 SHL 744 744 #define UM_FILLUSERLIST (WM_USER + 75) 745 745 #define UM_CONTAINERDIR (WM_USER + 76) -
trunk/dll/grep.c
r1438 r1456 528 528 } 529 529 DoAllSubdirs(grep, searchPath, TRUE, fle, numfls, pitdSleep, pitdReport); 530 // DosSleep(0); //26 Aug 07 GKY 1 // 07 Feb 08 SHL531 530 } 532 531 } -
trunk/dll/treecnr.c
r1455 r1456 76 76 22 Jul 09 GKY Streamline scanning code for faster Tree rescans 77 77 14 Sep 09 SHL Drop experimental code 78 15 Sep 09 SHL Use UM_GREP when passing pathname 78 79 79 80 ***********************************************************************/ … … 2703 2704 if (pci && (INT) pci != -1) 2704 2705 PostMsg(Collector, WM_COMMAND, 2705 MPFROM2SHORT( IDM_GREP, 0), MPFROMP(pci->pszFileName));2706 MPFROM2SHORT(UM_GREP, 0), MPFROMP(pci->pszFileName)); 2706 2707 else 2707 2708 PostMsg(Collector, WM_COMMAND,
Note:
See TracChangeset
for help on using the changeset viewer.