diff options
author | ÉRDI Gergo <cactus@src.gnome.org> | 1999-10-11 20:13:49 +0000 |
---|---|---|
committer | ÉRDI Gergo <cactus@src.gnome.org> | 1999-10-11 20:13:49 +0000 |
commit | b39839820b92175c4bed79e0d1a3bf8e763b34cc (patch) | |
tree | 5b804b83ae6a5c6e78b089e6546e3f30685ede80 /gdk/x11 | |
parent | a4013d86fbfe7c38f7927c0630a85a8ade53795a (diff) | |
download | gtk+-b39839820b92175c4bed79e0d1a3bf8e763b34cc.tar.gz |
(since noone objected on gtk-devel)
Passing 0 to XBell allows GDK to use the default X values which can be
set by the user via the xset command (e.g. to turn it off, or to
modify pitch/length/volume, etc)
Diffstat (limited to 'gdk/x11')
-rw-r--r-- | gdk/x11/gdkmain-x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/x11/gdkmain-x11.c b/gdk/x11/gdkmain-x11.c index 87b15b6a91..4e8b83f803 100644 --- a/gdk/x11/gdkmain-x11.c +++ b/gdk/x11/gdkmain-x11.c @@ -819,7 +819,7 @@ gdk_key_repeat_restore (void) void gdk_beep (void) { - XBell(gdk_display, 100); + XBell(gdk_display, 0); } /* |