Changeset 1655


Ignore:
Timestamp:
Jan 8, 2012, 7:17:31 PM (14 years ago)
Author:
Gregg Young
Message:

Cleanup and added comments

Location:
trunk/dll
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/common.c

    r1570 r1655  
    181181      rc = PFNWPStatic(hwnd, msg, mp1, mp2);
    182182      switch (WinQueryWindowUShort(hwnd, QWS_ID))
    183       case DIR_SORT:
    184       case DIR_VIEW:
    185       case DIR_FILTER:
    186       //fixme to allow user to change presparams 1-10-09 GKY
    187       SetPresParams(hwnd, &RGBGREY, &RGBBLACK, &RGBBLACK, FNT_8HELVETICA);
     183    case DIR_SORT:
     184    case DIR_VIEW:
     185    case DIR_FILTER:
     186        //fixme to allow user to change presparams 1-10-09 GKY
     187        SetPresParams(hwnd, &RGBGREY, &RGBBLACK, &RGBBLACK, FNT_8HELVETICA);
    188188      return rc;
    189189    }
  • trunk/dll/comp.c

    r1653 r1655  
    77
    88  Copyright (c) 1993-02 M. Kimes
    9   Copyright (c) 2003, 2010 Steven H. Levine
     9  Copyright (c) 2003, 2012 Steven H. Levine
    1010
    1111  16 Oct 02 MK Baseline
     
    7777  29 May 11 SHL Rework >65K records logic - prior fix was not quite right
    7878  12 Jun 11 GKY Added SleepIfNeeded in the container fill loop
     79  02 Jan 12 GKY Added pszFmtFileSize to container info to fix loss of file sizes on move and copy.
    7980
    8081***********************************************************************/
     
    16291630                        p++;
    16301631                        // 27 Sep 07 SHL fixme to do ULONGLONG conversion
    1631                         fb4.cbFile = atoll(p);
     1632                        fb4.cbFile = atol(p);
    16321633                        p = strchr(p, ',');
    16331634                        if (p) {
  • trunk/dll/flesh.c

    r1651 r1655  
    211211                       NULL,            // total files
    212212                       NULL);           // total bytes
    213     //}
    214   }
    215213    driveflags[*pciParent->pszFileName - 'A'] |= DRIVE_RSCANNED;
    216   return TRUE;
     214    return TRUE;
     215  }
     216  return FALSE;
    217217}
    218218
Note: See TracChangeset for help on using the changeset viewer.