Changeset 1484 for trunk/dll/worker.c


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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.