Changeset 919 for trunk/dll/notebook.c


Ignore:
Timestamp:
Jan 12, 2008, 10:43:34 PM (18 years ago)
Author:
Steven Levine
Message:

Correct Compare Directories select count regression
Correct Compare Directories file sizes regression
Speed up Compare Directories filter redraw
Report corrupted saved settings page index

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/notebook.c

    r918 r919  
    30833083    if (mp2 == MPFROMLONG(IDM_QUICKSETTINGS) &&
    30843084        x-- > 0 && np[x].hwnd && np[x].usFrameId == CFG9_FRAME) {
    3085       // 10 Jan 08 SHL fixme to know what UM_SETDIR 1 means
     3085      // 10 Jan 08 SHL fixme to document what UM_SETDIR 1 means
    30863086      PostMsg(MainObjectHwnd, UM_SETDIR, MPFROMLONG(1), MPVOID);
    30873087      PostMsg(WinWindowFromID(hwnd, CFG_NOTEBOOK),
     
    30913091    }
    30923092    else {
     3093      if (uLastPageIndex >= x) {
     3094        Runtime_Error(pszSrcFile, __LINE__, "uLastPageIndex corrupted (%u)",
     3095                      uLastPageIndex);
     3096        uLastPageIndex = 0;
     3097      }
    30933098      PostMsg(WinWindowFromID(hwnd, CFG_NOTEBOOK),
    30943099              BKM_TURNTOPAGE, MPFROMLONG(np[uLastPageIndex].ulPageId), MPVOID);
Note: See TracChangeset for help on using the changeset viewer.