Changeset 1395 for trunk/dll/viewinf.c
- Timestamp:
- Feb 8, 2009, 2:48:16 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/viewinf.c
r1391 r1395 17 17 10 Dec 08 SHL Integrate exception handler support 18 18 11 Jan 09 GKY Replace font names in the string file with global set at compile in init.c 19 07 Feb 09 GKY Eliminate Win_Error2 by moving function names to PCSZs used in Win_Error 20 07 Feb 09 GKY Allow user to turn off alert and/or error beeps in settings notebook. 19 21 20 22 ***********************************************************************/ … … 250 252 swp.cy, 251 253 hwnd, HWND_TOP, VINF_LISTBOX, NULL, NULL)) { 252 Win_Error2(hwnd, hwnd, pszSrcFile, __LINE__, IDS_WINCREATEWINDOW); 254 Win_Error(hwnd, hwnd, pszSrcFile, __LINE__, 255 PCSZ_WINCREATEWINDOW); 253 256 } 254 257 else { … … 438 441 MPVOID); 439 442 if (sSelect == LIT_NONE) { 440 DosBeep(50, 100); 443 if (!fAlertBeepOff) 444 DosBeep(50, 100); 441 445 break; 442 446 } … … 538 542 MPVOID); 539 543 if (sSelect < 0) { 540 DosBeep(50, 100); 544 if (!fAlertBeepOff) 545 DosBeep(50, 100); 541 546 } 542 547 else { … … 550 555 p = strchr(text, '>'); 551 556 if (!p) { 552 DosBeep(50, 100); 557 if (!fAlertBeepOff) 558 DosBeep(50, 100); 553 559 break; 554 560 } … … 556 562 bstrip(p); 557 563 if (!*p) 558 DosBeep(50, 100); 564 if (!fAlertBeepOff) 565 DosBeep(50, 100); 559 566 else 560 567 ViewHelp(p);
Note:
See TracChangeset
for help on using the changeset viewer.