Changeset 1391 for trunk/dll/info.c


Ignore:
Timestamp:
Jan 12, 2009, 12:55:53 AM (17 years ago)
Author:
Gregg Young
Message:

Move nontranslated strings to init.c and codepage.c; use those strings in place of GetPString calls. Move other strings to a StringTable; minor cleanup and code changes to codepage.c to use a string array instead of GetPString calls. Ticket 340

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/info.c

    r1358 r1391  
    2828  25 Dec 08 GKY Add DRIVE_RSCANNED flag to monitor for the first recursive drive scan per session
    2929                to prevent duplicate directory names in tree following a copy before initial scan.
     30  11 Jan 08 GKY Add Write verify off and recures scan to drive info display when appropriate.
    3031
    3132***********************************************************************/
     
    8889    if (isalpha(drive)) {
    8990      if (driveflags[toupper(drive) - 'A']) {
    90         for (x = IDS_FLREMOVABLETEXT; x < IDS_FLRAMDISKTEXT + 1; x++) {
     91        for (x = IDS_FLREMOVABLETEXT; x < IDS_FLRECURSESCANDONETEXT + 1; x++) {
    9192          if (driveflags[toupper(drive) - 'A'] &
    9293              (1 << (x - IDS_FLREMOVABLETEXT))) {
Note: See TracChangeset for help on using the changeset viewer.