Changeset 906 for trunk/dll/arccnrs.c


Ignore:
Timestamp:
Jan 6, 2008, 5:21:14 AM (18 years ago)
Author:
Gregg Young
Message:

The basic program quoting code and some mailto cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/arccnrs.c

    r897 r906  
    17001700              for (x = 0; li->list[x]; x++) {
    17011701                BldFullPathName(fullname, li->targetpath, li->list[x]);
    1702                 // sprintf(fullname, "%s%s%s",
    1703                 //      li->targetpath,
    1704                 //      (li->targetpath[strlen(li->targetpath) - 1] == '\\') ?
    1705                 //      NullStr : "\\", li->list[x]);
    17061702                if (IsFile(fullname) != -1) {
    17071703                  AddToList(li->list[x], &exfiles, &numfiles, &numalloc);
     
    18611857                }
    18621858                BldFullPathName(cl, li->targetpath, li->list[x]);
    1863                 // sprintf(cl, "%s%s%s", li->targetpath,
    1864                 //      (li->targetpath[strlen(li->targetpath) - 1] == '\\') ?
    1865                 //      NullStr : "\\", li->list[x]);
    18661859                temp = li->list[x];
    18671860                li->list[x] = xstrdup(cl, pszSrcFile, __LINE__);
     
    26842677      case IDM_NOTEBOOK:
    26852678        if (!ParentIsDesktop(dcd->hwndParent, dcd->hwndParent))
    2686           PostMsg(dcd->hwndParent, msg, mp1, mp2);
    2687         else
     2679          PostMsg(dcd->hwndParent, msg, mp1, mp2);
     2680        else
    26882681          WinDlgBox(HWND_DESKTOP,
    26892682                    hwnd,
    2690                     CfgDlgProc, FM3ModHandle, CFG_FRAME, (PVOID) "Archive");
     2683                    CfgDlgProc, FM3ModHandle, CFG_FRAME, MPFROMP("Archive"));
    26912684        break;
    26922685
     
    29562949              for (x = 0; li->list && li->list[x]; x++) {
    29572950                BldFullPathName(s, dcd->workdir, li->list[x]);
    2958                 // sprintf(s, "%s%s%s", dcd->workdir,
    2959                 //      (dcd->workdir[strlen(dcd->workdir) - 1] == '\\') ?
    2960                 //      NullStr : "\\", li->list[x]);
    29612951                if (IsFile(s) != 1) {
    29622952                  free(li->list[x]);
Note: See TracChangeset for help on using the changeset viewer.