Changeset 1484 for trunk/dll


Ignore:
Timestamp:
Dec 13, 2009, 9:16:07 PM (16 years ago)
Author:
Gregg Young
Message:

Another attempt to fix the container updating issues in FM/2 lite; fixed a typo in defview.c

Location:
trunk/dll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/defview.c

    r1481 r1484  
    2020  25 Aug 08 GKY Check TMP directory space warn if lee than 5 MiB prevent archiver from opening if
    2121                less than 10 KiB (It hangs and can't be closed)
    22   05 Jan 09 GKY Use TestBinary so that text veiwer isn't used for hex files by default
     22  05 Jan 09 GKY Use TestBinary so that text viewer isn't used for hex files by default
    2323  08 Mar 09 GKY Additional strings move to PCSZs
    2424  15 Nov 09 GKY Add check for attempt to open zero byte file and reorder file type checks
  • trunk/dll/worker.c

    r1458 r1484  
    4343  28 Jun 09 GKY Added AddBackslashToPath() to remove repeatative code.
    4444  26 Jul 09 GKY Fix failure of containers to update when Tree container isn't open in FM2 lite
     45  13 Dec 09 GKY Attempt to fix container update issues with FM/2 lite
    4546
    4647***********************************************************************/
     
    937938                                GetPString(IDS_TOTEXT), newname);
    938939                      }
    939                       if (!hwndTree ||
     940                      if (!strcmp(realappname, "FM/4") ||
    940941                          ((driveflags[*wk->li->targetpath - 'A'] & DRIVE_RSCANNED) &&
    941942                          AddToList(wk->li->list[x],
     
    945946                                  UM_UPDATERECORD,
    946947                                  MPFROMP(wk->li->list[x]), MPVOID);
    947                       if (!hwndTree ||
     948                      if (!strcmp(realappname, "FM/4")
    948949                          (driveflags[*wk->li->targetpath - 'A'] & DRIVE_RSCANNED) &&
    949950                          AddToList(newname, &files, &cFilesModified, &cItemsAllocated))
     
    10501051
    10511052          if (files) {
    1052             if (!hwndTree || (driveflags[*wk->li->targetpath - 'A'] & DRIVE_RSCANNED))
     1053            if (!strcmp(realappname, "FM/4") || !hwndTree ||
     1054                (driveflags[*wk->li->targetpath - 'A'] & DRIVE_RSCANNED))
    10531055              Broadcast(hab2,
    10541056                        wk->hwndCnr,
Note: See TracChangeset for help on using the changeset viewer.