Changeset 940 for trunk


Ignore:
Timestamp:
Jan 21, 2008, 10:55:00 PM (18 years ago)
Author:
Gregg Young
Message:

Minor cleanup, added comments and History for recent changes

Location:
trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/HISTORY

    r929 r940  
    99 o Rework Config menu.  Move some to submenu.  Add drag&drop dialog toggle. (Steven)
    1010 o Rework Walk dialog.  Put entry field at the top. (Steven)
    11  o Get Subjectwidth/left working in the collector. (Gregg)
     11 o Subjectwidth/left now works in the collector. (Gregg)
    1212 o Change Config->Edit and Config->Palette menus to have no default (Steven)
    1313 o Avoid spurious error reports for R/O directories on FAT volumes.  Ticket #116. (Steven)
     
    1515 o Fix toolbar to change background colors with color drag drop ticket #161 (Gregg)
    1616 o More Compare Directories rework.  Filters now honored by actions.  Tickets #191, #198 (Steven)
     17 o Fix failure of direct edit of Subjects and LongNames (Gregg)
     18 o Walk directories and walk directories2 now remeber size and position. (Gregg)
     19 o Compare directories dialog remembers size and position. (Gregg)
     20 o Individual directory containers can have different fonts & colors which are saved
     21 and restored (Gregg)
     22 o Moved command line, system and bookshelf to submenus on the utilities menu (Gregg)   
    1723
    18243.09
  • trunk/dll/dircnrs.h

    r922 r940  
    1010
    1111  05 Jan 08 SHL Move dircnrs.c definitions here
     12  13 Jan 08 GKY Add variables to DIRCNRDATA struct for Subjectwidth/Subjectleft.
    1213
    1314***********************************************************************/
  • trunk/dll/fm3dll2.h

    r933 r940  
    1717  10 Jan 08 SHL Add IDM_*SETTINGS for individual notebook pages
    1818  12 Jan 08 SHL Add IDM_TOGGLEDRAGDIALOG
     19  19 Jan 08 GKY Add IDM_COMMANDLINESUBMENU, IDM_SYSTEMSUBMENU & IDM_BOOKSELFSUBMENU
    1920
    2021***********************************************************************/
  • trunk/dll/fm3res.rc

    r935 r940  
    3131  12 Jan 08 SHL Rework Config menu
    3232  16 Jan 08 SHL Add sync updates toggle
     33  19 Jan 08 GKY Rework Utilities menu
    3334
    3435***********************************************************************/
  • trunk/dll/init.c

    r926 r940  
    3939  26 Nov 07 GKY Eliminate check of ext path on start up
    4040  17 Dec 07 GKY Make WPURLDEFAULTSETTINGS the fall back for ftp/httprun
     41  13 Jan 08 GKY Get Subjectwidth/Subjectleft working in the collector.
    4142
    4243***********************************************************************/
  • trunk/dll/mainwnd.c

    r933 r940  
    4747  16 Jan 08 GKY Fix changing background color on toolbar
    4848  xx Jan 08 JBS Ticket 150: fix/improve save and restore of dir cnr state at FM/2 close/reopen
     49  17 Jan 08 GKY Add presparam save & restore for individual directory containers
     50  19 Jan 08 GKY Rework Utilities menu
    4951
    5052***********************************************************************/
     
    30253027      sprintf(szKey, "%sDirCnrPos.%lu", szPrefix, x);
    30263028      size = sizeof(SWP);
    3027       if (PrfQueryProfileData(fmprof, FM3Str, szKey, (PVOID) & swp, &size)) {
     3029      if (PrfQueryProfileData(fmprof, FM3Str, szKey, (PVOID) &swp, &size)) {
    30283030        if (!pszStateName || !strcmp(pszStateName, GetPString(IDS_FM2TEMPTEXT)))
    30293031          PrfWriteProfileData(fmprof, FM3Str, szKey, NULL, 0L);
  • trunk/dll/mainwnd2.c

    r935 r940  
    2121  20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat
    2222  10 Jan 08 SHL Sync with CfgDlgProc mods
     23  19 Jan 08 GKY Rework Utilities menu
    2324
    2425***********************************************************************/
  • trunk/dll/misc.c

    r937 r940  
    3737  22 Nov 07 GKY Use CopyPresParams to fix presparam inconsistencies in menus
    3838  12 Jan 08 SHL Document SetConditionalCascade
     39  13 Jan 08 GKY Get Subjectwidth/Subjectleft working in the collector.
    3940  xx Jan 08 JBS Ticket 150: fix/improve save and restore of dir cnr state at FM/2 close/reopen
     41  21 Jan 08 GKY Stop reallocating NullStr by direct editing of empty subject and longname strings.
    4042
    4143***********************************************************************/
     
    756758            eaop.fpGEA2List = (PGEA2LIST) 0;
    757759            eaop.fpFEA2List = pfealist;
    758             eaop.oError = 0L;
     760            eaop.oError = 0;
    759761            rc = xDosSetPathInfo(pci->pszFileName, FIL_QUERYEASIZE,
    760762                                 &eaop, sizeof(eaop), DSPI_WRTTHRU);
  • trunk/dll/notebook.c

    r930 r940  
    2424  10 Jan 08 SHL Remember last settings page
    2525  10 Jan 08 SHL Rework page select logic
     26  13 Jan 08 GKY Get Subjectwidth/Subjectleft working in the collector.
    2627  xx Jan 08 JBS Ticket 150: fix/improve save and restore of dir cnr state at FM/2 close/reopen
    2728
Note: See TracChangeset for help on using the changeset viewer.