Changeset 1352
- Timestamp:
- Dec 21, 2008, 12:44:11 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/treecnr.c ¶
r1340 r1352 693 693 while (list[numentries]) 694 694 numentries++; 695 if (numentries) 696 UpdateCnrList(dcd->hwndCnr, list, numentries, TRUE, dcd); 695 if (numentries) { 696 //DbgMsg(pszSrcFile, __LINE__, "UM_UPDATERECORD %s", *list); 697 UpdateCnrList(dcd->hwndCnr, list, numentries, TRUE, dcd); 698 } 697 699 } 698 700 return 0; … … 808 810 Runtime_Error2(pszSrcFile, __LINE__, IDS_NODATATEXT); 809 811 else { 810 //PULONG pulPostCt;811 812 812 RemoveCnrItems(dcd->hwndCnr, NULL, 0, CMA_FREE | CMA_INVALIDATE | CMA_ERASE); 813 813 WinSendMsg(dcd->hwndCnr, … … 816 816 CM_SCROLLWINDOW, 817 817 MPFROMSHORT(CMA_HORIZONTAL), MPFROMLONG(-1)); 818 //if (!fInitialDriveScan) {819 //DosWaitEventSem(DriveScanStart, 20000);820 818 while (StubbyScanCount != 0) 821 819 DosSleep(50); 822 /*pulPostCt = xmallocz(sizeof(ULONG), pszSrcFile, __LINE__);823 if (pulPostCt) {824 DosResetEventSem(DriveScanStart, pulPostCt);825 free(pulPostCt);826 } */827 //}828 //else829 // fInitialDriveScan = FALSE;830 820 FillTreeCnr(dcd->hwndCnr, dcd->hwndParent); 831 821 if (fOkayMinimize) { … … 1191 1181 1192 1182 filename = mp1; 1193 if (filename) 1194 UpdateCnrRecord(hwnd, filename, TRUE, dcd); 1183 if (filename) { 1184 //DbgMsg(pszSrcFile, __LINE__, "UM_UPDATERECORD %s", filename); 1185 UpdateCnrRecord(hwnd, filename, TRUE, dcd); 1186 } 1195 1187 } 1196 1188 return 0; … … 1325 1317 cnri.flWindowAttr &= (~(CA_MIXEDTARGETEMPH | CA_ORDEREDTARGETEMPH)); 1326 1318 cnri.flWindowAttr |= CV_FLOW; 1327 1319 dcd->flWindowAttr = cnri.flWindowAttr; 1328 1320 WinSendMsg(hwnd, 1329 1321 CM_SETCNRINFO, 1330 1322 MPFROMP(&cnri), 1331 1323 MPFROMLONG(CMA_FLWINDOWATTR | CMA_LINESPACING | 1332 1324 CMA_CXTREEINDENT | CMA_PSORTRECORD)); 1333 1325 if (xbeginthread(MakeObjWin, 1334 1326 327680, … … 1822 1814 } 1823 1815 } 1824 1816 else if (SHORT2FROMMP(mp1) == CN_EXPANDTREE) { 1825 1817 if (Flesh(hwnd, pci) && !dcd->suspendview && fTopDir) 1826 1818 PostMsg(hwnd, UM_TOPDIR, MPFROMP(pci), MPVOID); … … 1972 1964 } 1973 1965 if (!strcmp(FileSystem, CDFS) || !strcmp(FileSystem, ISOFS)) 1974 driveflags[x] |= (DRIVE_REMOVABLE | 1975 DRIVE_NOTWRITEABLE | DRIVE_CDROM); 1966 driveflags[x] |= (DRIVE_REMOVABLE | DRIVE_NOTWRITEABLE | DRIVE_CDROM); 1976 1967 if(!strcmp(FileSystem,NTFS)) 1977 1968 driveflags[x] |= DRIVE_NOTWRITEABLE; … … 1983 1974 strcmp(FileSystem, FAT32) && 1984 1975 strcmp(FileSystem, NDFS32) && 1985 1976 strcmp(FileSystem, NTFS) && 1986 1977 strcmp(FileSystem, HPFS386)) { 1987 1978 driveflags[x] |= DRIVE_NOLONGNAMES; 1988 1979 } 1989 1980 SelectDriveIcon(pciP); 1990 1981 WinSendMsg(hwnd, … … 2656 2647 2657 2648 case IDM_COLLECT: 2649 case IDM_GREP: 2658 2650 if (!Collector) { 2659 2651 … … 2690 2682 else 2691 2683 StartCollector(dcd->hwndParent, 4); 2684 if (SHORT1FROMMP(mp1) == IDM_GREP) 2685 PostMsg(Collector, WM_COMMAND, 2686 MPFROM2SHORT(IDM_GREP, 0), MPVOID); 2687 else 2692 2688 PostMsg(hwnd, WM_COMMAND, MPFROM2SHORT(IDM_COLLECTOR, 0), MPVOID); 2693 2689 break; … … 3200 3196 NULL, 3201 3197 CCS_AUTOPOSITION | CCS_MINIICONS | 3202 CCS_MINIRECORDCORE 3198 CCS_MINIRECORDCORE, //| WS_VISIBLE, 3203 3199 0, 3204 3200 0,
Note:
See TracChangeset
for help on using the changeset viewer.