Changeset 1673 for trunk/dll/seeall.c


Ignore:
Timestamp:
Dec 30, 2012, 7:51:01 PM (13 years ago)
Author:
Gregg Young
Message:

Update to Doxygen comment style Ticket 55. Also some minor code cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/seeall.c

    r1664 r1673  
    524524            break;
    525525          }
    526           if (!WinDlgBox(HWND_DESKTOP, hwndFrame, ArchiveDlgProc, FM3ModHandle, ARCH_FRAME, (PVOID) & ad) || !*ad.arcname || !*ad.command) {    /* we blew it */
     526          if (!WinDlgBox(HWND_DESKTOP, hwndFrame, ArchiveDlgProc, FM3ModHandle, ARCH_FRAME, (PVOID) & ad) ||
     527              !*ad.arcname || !*ad.command) {    // we blew it
    527528            FreeList(list);
    528529            break;
     
    622623          goto RetryPath;
    623624        }
    624         /* intentional fallthru */
     625        // intentional fallthru
    625626      case IDM_RENAME:
    626627        {
     
    756757            }
    757758            if (plen) {
    758               /* make directory/ies, if required */
     759              // make directory/ies, if required
    759760
    760761              CHAR dirpart[CCHMAXPATH];
     
    14391440static BOOL Mark(HWND hwnd, INT command, CHAR ** list)
    14401441{
    1441   /* Marks only unfiltered files */
     1442  // Marks only unfiltered files
    14421443
    14431444  ALLDATA *pAD = WinQueryWindowPtr(hwnd, QWL_USER);
     
    15001501static BOOL UpdateList(HWND hwnd, CHAR **list)
    15011502{
    1502   /* Updates files in the list */
     1503  // Updates files in the list
    15031504
    15041505  ALLDATA *ad = WinQueryWindowPtr(hwnd, QWL_USER);
     
    24942495      mr = oldproc(hwnd, msg, mp1, mp2);
    24952496
    2496       /*
     2497      /**
    24972498       * Calculate the position of the client rectangle.
    24982499       * Otherwise,  we'll see a lot of redraw when we move the
     
    25152516      sCount = (SHORT) oldproc(hwnd, msg, mp1, mp2);
    25162517
    2517       /*
     2518      /**
    25182519       * Reformat the frame to "squeeze" the client
    25192520       * and make room for status window sibling beneath
     
    35343535          for (x = pAD->topfile - 1; x < pAD->afindexcnt; x++) {
    35353536            ptl.x = pAD->horzscroll;
    3536             if (wascursored) {          /* reestablish normal colors */
     3537            if (wascursored) {          // reestablish normal colors
    35373538              GpiSetColor(pAD->hps,
    35383539                          standardcolors[Colors[COLORS_NORMALFORE]]);
Note: See TracChangeset for help on using the changeset viewer.