Changeset 1395 for trunk/dll/worker.c


Ignore:
Timestamp:
Feb 8, 2009, 2:48:16 AM (17 years ago)
Author:
Gregg Young
Message:

Allow user to turn off alert and/or error beeps in settings notebook. Ticket 341 Move repeated strings to PCSZs. Ticket 6 Add *DateFormat functions to format dates based on locale Ticket 28 Eliminate Win_Error2 by moving function names to PCSZs used in Win_Error Ticket 6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/worker.c

    r1394 r1395  
    3838  25 Dec 08 GKY Add DRIVE_RSCANNED flag to monitor for the first recursive drive scan per session
    3939                to prevent duplicate directory names in tree following a copy before initial scan.
     40  07 Feb 09 GKY Allow user to turn off alert and/or error beeps in settings notebook.
    4041
    4142***********************************************************************/
     
    10191020                      GetPString(IDS_ARETEXT) : GetPString(IDS_ISTEXT));
    10201021              Notify(message);
    1021               if (toupper(*wk->li->targetpath) < 'C')
     1022              if (toupper(*wk->li->targetpath) < 'C' && !fAlertBeepOff)
    10221023                DosBeep(1000, 25);      // Wake up user
    10231024              DosSleep(16);//05 Aug 07 GKY 33
     
    16131614                          (hs > 1) ?
    16141615                          GetPString(IDS_ARETEXT) : GetPString(IDS_ISTEXT));
    1615                 if (ro || hs || sysdir)
     1616                if ((ro || hs || sysdir) && !fAlertBeepOff)
    16161617                  DosBeep(300, 100);    // Wake up user
    16171618                strcat(prompt, GetPString(IDS_DELPROMPT6TEXT));
Note: See TracChangeset for help on using the changeset viewer.