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

    r1394 r1395  
    4242  23 Aug 08 GKY Fix memory leak (failure to free cnritems)
    4343  10 Dec 08 SHL Integrate exception handler support
     44  07 Feb 09 GKY Allow user to turn off alert and/or error beeps in settings notebook.
    4445
    4546***********************************************************************/
     
    631632    WinSendDlgItemMsg(hwnd, DSZ_CNR, CM_SORTRECORD, MPFROMP(SortSizeCnr),
    632633                      MPVOID);
    633     DosBeep(500, 25);                   // Wake up user
     634    if (!fAlertBeepOff)
     635      DosBeep(500, 25);                 // Wake up user
    634636    return 0;
    635637
     
    10161018          pState->dying = TRUE;
    10171019          pState->chStopFlag = (CHAR)0xff;
    1018           DosBeep(1000, 100);           // Complain?
     1020          if (!fAlertBeepOff)
     1021            DosBeep(1000, 100);         // Complain?
    10191022        }
    10201023        else
Note: See TracChangeset for help on using the changeset viewer.