forked from AuroraMiddleware/gtk
(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)
This commit is contained in:
parent
a4013d86fb
commit
b39839820b
@ -1,3 +1,8 @@
|
|||||||
|
1999-10-11 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
|
||||||
|
X values
|
||||||
|
|
||||||
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
1999-10-11 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
|
||||||
|
X values
|
||||||
|
|
||||||
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
1999-10-11 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
|
||||||
|
X values
|
||||||
|
|
||||||
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
1999-10-11 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
|
||||||
|
X values
|
||||||
|
|
||||||
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
1999-10-11 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
|
||||||
|
X values
|
||||||
|
|
||||||
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
1999-10-11 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
|
||||||
|
X values
|
||||||
|
|
||||||
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
1999-10-11 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
|
* gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
|
||||||
|
X values
|
||||||
|
|
||||||
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
1999-10-09 ERDI Gergo <cactus@cactus.rulez.org>
|
||||||
|
|
||||||
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
* gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
|
||||||
|
@ -819,7 +819,7 @@ gdk_key_repeat_restore (void)
|
|||||||
void
|
void
|
||||||
gdk_beep (void)
|
gdk_beep (void)
|
||||||
{
|
{
|
||||||
XBell(gdk_display, 100);
|
XBell(gdk_display, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -819,7 +819,7 @@ gdk_key_repeat_restore (void)
|
|||||||
void
|
void
|
||||||
gdk_beep (void)
|
gdk_beep (void)
|
||||||
{
|
{
|
||||||
XBell(gdk_display, 100);
|
XBell(gdk_display, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user