Changeset 946
- Timestamp:
- Feb 10, 2008, 8:02:58 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/HISTORY ¶
r941 r946 2 2 3 3 3.10 (pre) 4 o Removed the close buttton and menu item from the tree container which closed FM/2 (Gregg) 5 o Implement bubble help for bitmap menu items in collector and arc container (Gregg) 4 6 o Correct/enhance settings notebook navigation, ticket #188 (Steven) 5 7 o Reopen settings notebook to last selected page unless overridden, ticket #188 (Steven) … … 13 15 o Avoid spurious error reports for R/O directories on FAT volumes. Ticket #116. (Steven) 14 16 o Add immediate updates toggle to config menu. Ticket #132. (Steven) 15 o Fix toolbar to change background colors with color drag drop ticket #161 (Gregg) 17 o Fix toolbar to change background colors with color drag drop ticket #161 (Gregg) 16 18 o More Compare Directories rework. Filters now honored by actions. Tickets #191, #198 (Steven) 17 19 o Fix failure of direct edit of Subjects and LongNames (Gregg) … … 20 22 o Individual directory containers can have different fonts & colors which are saved 21 23 and restored (Gregg) 22 o Moved command line, system and bookshelf to submenus on the utilities menu (Gregg) 24 o Moved command line, system and bookshelf to submenus on the utilities menu (Gregg) 23 25 o Restore no-prescan drives if restoring named state 24 26 This reverts to orginal behavior for named states -
TabularUnified trunk/dll/arccnrs.c ¶
r942 r946 50 50 30 Dec 07 GKY Use TestCDates for sort by date 51 51 10 Jan 08 SHL Sync with CfgDlgProc mods 52 10 Feb 08 GKY Implement bubble help for bitmap menu items 52 53 53 54 ***********************************************************************/ -
TabularUnified trunk/dll/collect.c ¶
r942 r946 43 43 22 Nov 07 GKY Use CopyPresParams to fix presparam inconsistencies in menus 44 44 10 Jan 08 SHL Sync with CfgDlgProc mods 45 10 Feb 08 GKY Implement bubble help for bitmap menu items 45 46 46 47 ***********************************************************************/ -
TabularUnified trunk/dll/fm3str.h ¶
r942 r946 17 17 06 Apr 07 GKY Add error message for drg work around 18 18 26 Nov 07 GKY Added new readonly in editor & ext path 19 10 Feb 08 GKY Add strings to implement bubble help for bitmap menu items 19 20 20 21 ***********************************************************************/ -
TabularUnified trunk/dll/mainwnd.c ¶
r941 r946 2508 2508 case WM_PRESPARAMCHANGED: 2509 2509 PresParamChanged(hwnd, "ToolBar", mp1, mp2); 2510 WinInvalidateRect(hwnd, NULL, TRUE); 2510 2511 break; 2511 2512 -
TabularUnified trunk/dll/newview.c ¶
r920 r946 2449 2449 } 2450 2450 } 2451 } 2451 } 2452 //Move line to selection box at top of viewer 2452 2453 numsels = (SHORT) WinSendDlgItemMsg(ad->hwndFrame, NEWVIEW_LISTBOX, 2453 2454 LM_QUERYITEMCOUNT, MPVOID, … … 2486 2487 2487 2488 width = ad->textsize - (whichline * 16); 2488 width = min(width, 16); 2489 width = min(width, 16); //standard hexx line length 2490 //use 80 as width * 5 gives inconsistent format on short lines 2489 2491 s = xmalloc(80, pszSrcFile, __LINE__); 2490 2492 if (!s) -
TabularUnified trunk/dll/valid.c ¶
r915 r946 208 208 } 209 209 210 /* CheckDrive210 /** CheckDrive 211 211 * @param chDrive drive letter 212 212 * @param pszFileSystem pointer to buffer to return file system type or NULL
Note:
See TracChangeset
for help on using the changeset viewer.