Changeset 1395 for trunk/dll/grep.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/grep.c

    r1303 r1395  
    3030  29 Feb 08 GKY Use xfree where appropriate
    3131  29 Nov 08 GKY Remove or replace with a mutex semaphore DosEnterCriSec where appropriate.
     32  07 Feb 09 GKY Allow user to turn off alert and/or error beeps in settings notebook.
    3233
    3334***********************************************************************/
     
    15191520    else {
    15201521      // Insufficient memory - fall back to slow method - fixme to saymsg?
    1521       DosBeep(50, 100);
     1522      if (!fErrorBeepOff)
     1523        DosBeep(50, 100);
    15221524      if (!hwndStatus)
    15231525        WinSetWindowText(grep->hwndCurFile, GetPString(IDS_GREPDUPECOMPARINGTEXT));
Note: See TracChangeset for help on using the changeset viewer.