Changeset 1855


Ignore:
Timestamp:
Aug 18, 2015, 6:56:07 PM (10 years ago)
Author:
Steven Levine
Message:

Clean up and comment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/common.c

    r1833 r1855  
    77
    88  Copyright (c) 1993, 1998 M. Kimes
    9   Copyright (c) 2001, 2010 Steven H. Levine
     9  Copyright (c) 2001, 2015 Steven H. Levine
    1010
    1111  13 Aug 05 SHL Renames
     
    3434  17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *.
    3535  13 Jul 15 GKY Fix CN_REALLOCPSZ file name editing code to: 1) Eliminate the possibility of
    36                 updating the container before CN_ENDEDIT is called. 2) Don't call RemoveCnrItems
    37                 for tree container and collector.
     36                updating the container before CN_ENDEDIT is called. 2) Don't call RemoveCnrItems
     37                for tree container and collector.
     38  07 Aug 15 SHL Clean up and comment
    3839
    3940***********************************************************************/
     
    6364#include "fm3str.h"
    6465#include "mle.h"
    65 #include "filldir.h"                    // RemoveCnrItems
    6666#include "errutil.h"                    // Dos_Error...
    6767#include "strutil.h"                    // GetPString
    6868#include "autoview.h"                   // AutoViewProc
    6969#include "mainwnd.h"                    // BuildDriveBarButtons, GetNextWindowPos, TopWindow
    70 #include "common.h"
    7170#include "dirsize.h"                    // DirSizeProc
    7271#include "info.h"                       // DrvInfoProc, SetDrvProc
     
    153152  case UM_RESCAN:
    154153    if (fAutoTile &&
    155         !fAmClosing && !fNoTileUpdate && !ParentIsDesktop(hwnd, (HWND) 0))
     154        !fAmClosing && !fNoTileUpdate && !ParentIsDesktop(hwnd, (HWND) 0))
    156155      PostMsg(WinQueryWindow(hwnd, QW_PARENT), UM_RESCAN, MPVOID, MPVOID);
    157156    return 0;
     
    188187      case DIR_VIEW:
    189188      case DIR_FILTER:
    190         //fixme to allow user to change presparams 1-10-09 GKY
    191         SetPresParams(hwnd, &RGBGREY, &RGBBLACK, &RGBBLACK, FNT_8HELVETICA);
     189        //fixme to allow user to change presparams 1-10-09 GKY
     190        SetPresParams(hwnd, &RGBGREY, &RGBBLACK, &RGBBLACK, FNT_8HELVETICA);
    192191        return rc;
    193192      }
     
    671670      if (mp1) {
    672671        cWorkerThreads++;
    673         // 13 Sep 09 SHL fixme to be SMP safe
     672        // 13 Sep 09 SHL FIXME to be SMP safe
    674673        if (cWorkerThreads == 1) {
    675674          if (!WinStartTimer(WinQueryAnchorBlock(hwnd), hwnd, ID_LED_TIMER, 500))
     
    874873      }
    875874      else if (mp2) {
    876         Broadcast(WinQueryAnchorBlock(hwnd),
    877                   dcd->hwndParent, UM_UPDATERECORD, mp2, MPVOID);
    878         xfree(mp2, pszSrcFile, __LINE__);
     875        Broadcast(WinQueryAnchorBlock(hwnd),
     876                  dcd->hwndParent, UM_UPDATERECORD, mp2, MPVOID);
     877        xfree(mp2, pszSrcFile, __LINE__);
    879878      }
    880879    }
Note: See TracChangeset for help on using the changeset viewer.