Changeset 1395 for trunk/dll/uudecode.c
- Timestamp:
- Feb 8, 2009, 2:48:16 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/uudecode.c
r1228 r1395 16 16 22 Mar 07 GKY Use QWL_USER 17 17 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. 18 19 19 20 ***********************************************************************/ … … 343 344 WinQueryDlgItemText(hwnd, MRG_TARGETNAME, CCHMAXPATH, szBuffer); 344 345 if (!*szBuffer) { 345 DosBeep(50, 100); 346 if (!fAlertBeepOff) 347 DosBeep(50, 100); 346 348 WinSetFocus(HWND_DESKTOP, WinWindowFromID(hwnd, MRG_TARGETNAME)); 347 349 break; … … 350 352 FIL_QUERYFULLNAME, 351 353 wk->li->targetpath, CCHMAXPATH)) { 352 DosBeep(50, 100); 354 if (!fAlertBeepOff) 355 DosBeep(50, 100); 353 356 WinSetFocus(HWND_DESKTOP, WinWindowFromID(hwnd, MRG_TARGETNAME)); 354 357 break;
Note:
See TracChangeset
for help on using the changeset viewer.