Changeset 1444 for trunk/dll/comp.c
- Timestamp:
- Jul 23, 2009, 1:24:23 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/comp.c
r1438 r1444 67 67 15 Mar 09 GKY Use WriteDetailsSwitchs to save detail switch changes to the ini file. 68 68 28 Jun 09 GKY Added AddBackslashToPath() to remove repeatative code. 69 13 Jul 09 SHL Sync with renames 69 70 70 71 ***********************************************************************/ … … 766 767 SleepIfNeeded(&itdSleep, 0); 767 768 } // while 768 WinPostMsg(cmp->hwnd, WM_TIMER, MPFROMLONG(ID_ TIMER), 0); // Force update769 WinPostMsg(cmp->hwnd, WM_TIMER, MPFROMLONG(ID_COMP_TIMER), 0); // Force update 769 770 Abort: 770 771 WinDestroyMsgQueue(hmq); … … 822 823 823 824 default: 825 // 08 Feb 09 SHL fixme to support Ctrl-click for ANDed select 824 826 // 13 Jan 08 SHL fixme to decide if cmp->reset can ever get set 825 827 // if not lots of code can disappear … … 1402 1404 } 1403 1405 1404 WinPostMsg(hwnd, WM_TIMER, MPFROMLONG(ID_ TIMER), 0); // Force update1406 WinPostMsg(hwnd, WM_TIMER, MPFROMLONG(ID_COMP_TIMER), 0); // Force update 1405 1407 DosPostEventSem(CompactSem); 1406 1408 } … … 1883 1885 pcil->pszDispAttr = FileAttrToString(pcil->attrFile); 1884 1886 pcil->cbFile = filesl[l]->cbFile; 1885 // 12 Jan 08 SHL fixme to use dcached size here too1887 // 12 Jan 08 SHL fixme to use cached size here too 1886 1888 CommaFmtULL(szBuf, sizeof(szBuf), pcil->cbFile, ' '); 1887 1889 pcil->pszFmtFileSize = xstrdup(szBuf, pszSrcFile, __LINE__); … … 2246 2248 } 2247 2249 } 2248 WinStartTimer(WinQueryAnchorBlock(hwnd), hwnd, ID_ TIMER, 500);2250 WinStartTimer(WinQueryAnchorBlock(hwnd), hwnd, ID_COMP_TIMER, 500); 2249 2251 } 2250 2252 break; … … 2457 2459 WinEnableWindowUpdate(hwndLeft, TRUE); 2458 2460 WinEnableWindowUpdate(hwndRight, TRUE); 2459 WinPostMsg(hwnd, WM_TIMER, MPFROMLONG(ID_ TIMER), 0); // Force update2461 WinPostMsg(hwnd, WM_TIMER, MPFROMLONG(ID_COMP_TIMER), 0); // Force update 2460 2462 // 12 Jan 08 SHL fixme to have SetButtonEnables(COMPARE* pcmp, BOOL fEnable) 2461 2463 // to replace duplicated code here and elsewhere … … 2884 2886 2885 2887 case WM_COMMAND: 2888 // 29 Apr 09 SHL fixme to support more context menu items - IDM_EDIT, IDM_DELETE etc. 2886 2889 switch (SHORT1FROMMP(mp1)) { 2887 2890 case IDM_COMPARE: … … 3364 3367 if (cmp) { 3365 3368 // 17 Jan 08 SHL fixme to know if stop really needed? 3366 WinStopTimer(WinQueryAnchorBlock(hwnd), hwnd, ID_ TIMER);3369 WinStopTimer(WinQueryAnchorBlock(hwnd), hwnd, ID_COMP_TIMER); 3367 3370 if (cmp->dcd.hwndLastMenu) 3368 3371 WinDestroyWindow(cmp->dcd.hwndLastMenu);
Note:
See TracChangeset
for help on using the changeset viewer.