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

    r1394 r1395  
    2424  10 Dec 08 SHL Integrate exception handler support
    2525  01 Jan 09 GKY Add Seek and Scan to drives & directory context menus pass drive/dir as search root
     26  07 Feb 09 GKY Allow user to turn off alert and/or error beeps in settings notebook.
    2627
    2728  fixme for more excess locals to be gone
     
    157158        bstrip(p);
    158159        if (!*p) {
    159           DosBeep(50, 100);
     160          if (!fAlertBeepOff)
     161            DosBeep(50, 100);
    160162          WinSetFocus(HWND_DESKTOP, WinWindowFromID(hwnd, ENV_NAME));
    161163        }
     
    851853        bstrip(p);
    852854        if (!*p) {
    853           DosBeep(50, 100);
     855          if (!fAlertBeepOff)
     856            DosBeep(50, 100);
    854857          WinSetFocus(HWND_DESKTOP, WinWindowFromID(hwnd, GREP_MASK));
    855858          free(p);
Note: See TracChangeset for help on using the changeset viewer.