mirror of
https://github.com/gnustep/libs-back.git
synced 2025-06-01 09:42:17 +00:00
* 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:
parent
e33d340cd6
commit
d9db95f880
4 changed files with 9 additions and 3 deletions
|
@ -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>
|
2005-12-16 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
* configure.in: Check for Xutf8LookupString
|
* configure.in: Check for Xutf8LookupString
|
||||||
|
|
|
@ -874,7 +874,7 @@ static int byte_order(void)
|
||||||
{
|
{
|
||||||
NSLog(@"ARTContext -beep: why here?");
|
NSLog(@"ARTContext -beep: why here?");
|
||||||
#ifndef RDS
|
#ifndef RDS
|
||||||
XBell([(XGServer *)server xDisplay], 50);
|
XBell([(XGServer *)server xDisplay], 0);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -595,7 +595,7 @@ _parse_display_name(NSString *name, int *dn, int *sn)
|
||||||
|
|
||||||
- (void) beep
|
- (void) beep
|
||||||
{
|
{
|
||||||
XBell(dpy, 50);
|
XBell(dpy, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
- glContextClass
|
- glContextClass
|
||||||
|
|
|
@ -751,7 +751,7 @@ GNUstepErrorProc (DPSContext ctxt, DPSErrorCode errCode,
|
||||||
|
|
||||||
- (void) NSBeep
|
- (void) NSBeep
|
||||||
{
|
{
|
||||||
XBell([(XGServer *)server xDisplay], 50);
|
XBell([(XGServer *)server xDisplay], 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue