Changeset 946


Ignore:
Timestamp:
Feb 10, 2008, 8:02:58 PM (17 years ago)
Author:
Gregg Young
Message:

Minor code cleanup and documentation for some changes. (Tickets 3, 7, 184)

Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/HISTORY

    r941 r946  
    22
    333.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)
    46 o Correct/enhance settings notebook navigation, ticket #188  (Steven)
    57 o Reopen settings notebook to last selected page unless overridden, ticket #188 (Steven)
     
    1315 o Avoid spurious error reports for R/O directories on FAT volumes.  Ticket #116. (Steven)
    1416 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)
    1618 o More Compare Directories rework.  Filters now honored by actions.  Tickets #191, #198 (Steven)
    1719 o Fix failure of direct edit of Subjects and LongNames (Gregg)
     
    2022 o Individual directory containers can have different fonts & colors which are saved
    2123   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)
    2325 o Restore no-prescan drives if restoring named state
    2426   This reverts to orginal behavior for named states
  • TabularUnified trunk/dll/arccnrs.c

    r942 r946  
    5050  30 Dec 07 GKY Use TestCDates for sort by date
    5151  10 Jan 08 SHL Sync with CfgDlgProc mods
     52  10 Feb 08 GKY Implement bubble help for bitmap menu items
    5253
    5354***********************************************************************/
  • TabularUnified trunk/dll/collect.c

    r942 r946  
    4343  22 Nov 07 GKY Use CopyPresParams to fix presparam inconsistencies in menus
    4444  10 Jan 08 SHL Sync with CfgDlgProc mods
     45  10 Feb 08 GKY Implement bubble help for bitmap menu items
    4546
    4647***********************************************************************/
  • TabularUnified trunk/dll/fm3str.h

    r942 r946  
    1717  06 Apr 07 GKY Add error message for drg work around
    1818  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
    1920
    2021***********************************************************************/
  • TabularUnified trunk/dll/mainwnd.c

    r941 r946  
    25082508  case WM_PRESPARAMCHANGED:
    25092509    PresParamChanged(hwnd, "ToolBar", mp1, mp2);
     2510    WinInvalidateRect(hwnd, NULL, TRUE);
    25102511    break;
    25112512
  • TabularUnified trunk/dll/newview.c

    r920 r946  
    24492449            }
    24502450          }
    2451         }
     2451        }
     2452        //Move line to selection box at top of viewer
    24522453        numsels = (SHORT) WinSendDlgItemMsg(ad->hwndFrame, NEWVIEW_LISTBOX,
    24532454                                            LM_QUERYITEMCOUNT, MPVOID,
     
    24862487
    24872488            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
    24892491            s = xmalloc(80, pszSrcFile, __LINE__);
    24902492            if (!s)
  • TabularUnified trunk/dll/valid.c

    r915 r946  
    208208}
    209209
    210 /* CheckDrive
     210/** CheckDrive
    211211 * @param chDrive drive letter
    212212 * @param pszFileSystem pointer to buffer to return file system type or NULL
Note: See TracChangeset for help on using the changeset viewer.