Changeset 1668 for trunk/dll/grep.c
- Timestamp:
- Aug 6, 2012, 1:23:54 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/grep.c
r1665 r1668 41 41 05 Aug 12 GKY Replace SleepIfNeeded with IdleIfNeeded to improve IU response during long searches; it 42 42 will switch between normal and idle priority and back. 43 05 Aug 12 GKY Always sort "Find Dups" by filename in the collector. 43 44 44 45 ***********************************************************************/ … … 76 77 #include "fortify.h" 77 78 #include "init.h" // Golbal semaphore 79 #include "sortcnr.h" // SortCollectorCnr 80 #include "collect.h" 78 81 79 82 static VOID DoAllSubdirs(GREP *grep, … … 425 428 { 426 429 FillDupes(&grep, &itdSleep, &itdReport); 430 CollectorsortFlags = 0; 431 CollectorsortFlags |= SORT_FILENAME; 432 WinSendMsg(grep.hwndFiles, CM_SORTRECORD, MPFROMP(SortCollectorCnr), 433 MPFROMLONG(CollectorsortFlags)); 434 SaySort(WinWindowFromID(WinQueryWindow(grep.hwndFiles, QW_PARENT), 435 DIR_SORT), CollectorsortFlags, FALSE); 427 436 } 428 429 437 if (!PostMsg(grep.hwndFiles, UM_CONTAINER_FILLED, MPVOID, MPVOID)) // tell window we're done 430 438 WinSendMsg(grep.hwndFiles, UM_CONTAINER_FILLED, MPVOID, MPVOID);
Note:
See TracChangeset
for help on using the changeset viewer.