Changeset 906 for trunk/dll/arccnrs.c
- Timestamp:
- Jan 6, 2008, 5:21:14 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/arccnrs.c
r897 r906 1700 1700 for (x = 0; li->list[x]; x++) { 1701 1701 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]);1706 1702 if (IsFile(fullname) != -1) { 1707 1703 AddToList(li->list[x], &exfiles, &numfiles, &numalloc); … … 1861 1857 } 1862 1858 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]);1866 1859 temp = li->list[x]; 1867 1860 li->list[x] = xstrdup(cl, pszSrcFile, __LINE__); … … 2684 2677 case IDM_NOTEBOOK: 2685 2678 if (!ParentIsDesktop(dcd->hwndParent, dcd->hwndParent)) 2686 2687 2679 PostMsg(dcd->hwndParent, msg, mp1, mp2); 2680 else 2688 2681 WinDlgBox(HWND_DESKTOP, 2689 2682 hwnd, 2690 CfgDlgProc, FM3ModHandle, CFG_FRAME, (PVOID) "Archive");2683 CfgDlgProc, FM3ModHandle, CFG_FRAME, MPFROMP("Archive")); 2691 2684 break; 2692 2685 … … 2956 2949 for (x = 0; li->list && li->list[x]; x++) { 2957 2950 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]);2961 2951 if (IsFile(s) != 1) { 2962 2952 free(li->list[x]);
Note:
See TracChangeset
for help on using the changeset viewer.