Changeset 1395 for trunk/dll/eas.c
- Timestamp:
- Feb 8, 2009, 2:48:16 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/eas.c
r1347 r1395 22 22 01 Sep 07 GKY Use xDosSetPathInfo to fix case where FS3 buffer crosses 64k boundry 23 23 29 Feb 08 GKY Use xfree where appropriate 24 07 Feb 09 GKY Allow user to turn off alert and/or error beeps in settings notebook. 24 25 25 26 ***********************************************************************/ … … 157 158 else { 158 159 if (CheckEA(head, s)) { 159 DosBeep(50, 100); 160 if (!fAlertBeepOff) 161 DosBeep(50, 100); 160 162 WinSetDlgItemText(hwnd, EAC_TEXT, 161 163 GetPString(IDS_EANAMEEXISTSTEXT)); … … 164 166 for (x = 0; *forbidden[x]; x++) { 165 167 if (!strcmp(forbidden[x], s)) { 166 DosBeep(50, 100); 168 if (!fAlertBeepOff) 169 DosBeep(50, 100); 167 170 WinSetDlgItemText(hwnd, EAC_TEXT, 168 171 GetPString(IDS_EANAMERESERVEDTEXT)); … … 177 180 if (!strcmp(restypes[x].name, s)) { 178 181 if (type != restypes[x].type) { 179 DosBeep(50, 100); 182 if (!fAlertBeepOff) 183 DosBeep(50, 100); 180 184 WinSetDlgItemText(hwnd, EAC_TEXT, 181 185 GetPString(IDS_EAWRONGTYPETEXT));
Note:
See TracChangeset
for help on using the changeset viewer.