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

    r1228 r1395  
    1616  22 Mar 07 GKY Use QWL_USER
    1717  20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat
     18  07 Feb 09 GKY Allow user to turn off alert and/or error beeps in settings notebook.
    1819
    1920***********************************************************************/
     
    343344        WinQueryDlgItemText(hwnd, MRG_TARGETNAME, CCHMAXPATH, szBuffer);
    344345        if (!*szBuffer) {
    345           DosBeep(50, 100);
     346          if (!fAlertBeepOff)
     347            DosBeep(50, 100);
    346348          WinSetFocus(HWND_DESKTOP, WinWindowFromID(hwnd, MRG_TARGETNAME));
    347349          break;
     
    350352                             FIL_QUERYFULLNAME,
    351353                             wk->li->targetpath, CCHMAXPATH)) {
    352           DosBeep(50, 100);
     354          if (!fAlertBeepOff)
     355            DosBeep(50, 100);
    353356          WinSetFocus(HWND_DESKTOP, WinWindowFromID(hwnd, MRG_TARGETNAME));
    354357          break;
Note: See TracChangeset for help on using the changeset viewer.