* Source/art/ARTContext.m ([ARTContext -beep]): Respect user setting

of bell volume.
* Source/x11/XGServe.m: Idem.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@22191 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2005-12-20 20:36:59 +00:00
parent e33d340cd6
commit d9db95f880
4 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2005-12-20 Adam Fedor <fedor@gnu.org>
* Source/art/ARTContext.m ([ARTContext -beep]): Respect user setting
of bell volume.
* Source/x11/XGServe.m: Idem.
2005-12-16 Adam Fedor <fedor@gnu.org>
* configure.in: Check for Xutf8LookupString

View file

@ -874,7 +874,7 @@ static int byte_order(void)
{
NSLog(@"ARTContext -beep: why here?");
#ifndef RDS
XBell([(XGServer *)server xDisplay], 50);
XBell([(XGServer *)server xDisplay], 0);
#endif
}

View file

@ -595,7 +595,7 @@ _parse_display_name(NSString *name, int *dn, int *sn)
- (void) beep
{
XBell(dpy, 50);
XBell(dpy, 0);
}
- glContextClass

View file

@ -751,7 +751,7 @@ GNUstepErrorProc (DPSContext ctxt, DPSErrorCode errCode,
- (void) NSBeep
{
XBell([(XGServer *)server xDisplay], 50);
XBell([(XGServer *)server xDisplay], 0);
}
@end