Changeset 1673 for trunk/dll/defview.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/defview.c

    r1656 r1673  
    203203                 ULONG flags, CHAR * filename)
    204204{
    205   /*
     205  /**
    206206   * bitmapped flags:
    207207   * ---------------
     
    228228  }
    229229
    230   if (flags & 1)                        /* directly view the file */
     230  if (flags & 1)                        // directly view the file
    231231    goto ViewIt;
    232232
    233   if (flags & 2) {                      /* open default WPS view of file */
     233  if (flags & 2) {                      // open default WPS view of file
    234234    OpenObject(filename, Default, hwnd);
    235235    return;
    236236  }
    237237
    238   if (flags & 4) {                      /* open WPS settings notebook for file */
     238  if (flags & 4) {                      // open WPS settings notebook for file
    239239    OpenObject(filename, Settings, hwnd);
    240240    return;
    241241  }
    242242
    243   if ((flags & 16) || !IsFile(filename)) {      /* open info for directories */
     243  if ((flags & 16) || !IsFile(filename)) {      // open info for directories
    244244
    245245    char fullname[CCHMAXPATH];
     
    267267  }
    268268
    269   if (flags & 8) {                      /* edit file */
     269  if (flags & 8) {                      // edit file
    270270
    271271    ULONG type = IDM_EDITTEXT;
     
    282282        break;
    283283      }
    284       /* else intentional fallthru */
     284      // else intentional fallthru
    285285    case IDM_EDITTEXT:
    286286      if (*editor)
Note: See TracChangeset for help on using the changeset viewer.