diff options
author | Tim Janik <timj@gtk.org> | 1998-12-16 06:03:14 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-12-16 06:03:14 +0000 |
commit | 017dfc9e4ee30ef271b5392a5f45d37ab0ad2e87 (patch) | |
tree | 92e3c52ac9d7e59bbeaf8687d2d2c37c1eaba2c6 /gtk/gtkspinbutton.c | |
parent | 2c9c7efb2349e145f9af38677d54c4d818c069b0 (diff) | |
download | gtk+-017dfc9e4ee30ef271b5392a5f45d37ab0ad2e87.tar.gz |
version bump to 1.1.8, binary age 0, interface age 0, depend on GLib
Wed Dec 16 05:26:32 1998 Tim Janik <timj@gtk.org>
* configure.in: version bump to 1.1.8, binary age 0, interface age 0,
depend on GLib 1.1.8.
* gdk/gdkprivate.h:
* gdk/gdkglobals.c: removed last Gdk threads specific bits.
* gtk/gtkmain.c (gtk_init): s/g_thread_supported/g_thread_supported()/.
* gtk/gtkprivate.h: changed GTK_THREADS_ENTER and GTK_THREADS_LEAVE
to function macros GTK_THREADS_ENTER() and GTK_THREADS_LEAVE().
honour G_THREADS_ENABLED in the definition of GTK_THREADS_ENTER()
and GTK_THREADS_LEAVE(). changed callers accordingly.
Diffstat (limited to 'gtk/gtkspinbutton.c')
-rw-r--r-- | gtk/gtkspinbutton.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c index 58f69d616f..d3d4ef6b80 100644 --- a/gtk/gtkspinbutton.c +++ b/gtk/gtkspinbutton.c @@ -910,7 +910,7 @@ gtk_spin_button_timer (GtkSpinButton *spin_button) { gboolean retval = FALSE; - GTK_THREADS_ENTER; + GTK_THREADS_ENTER (); if (spin_button->timer) { @@ -943,7 +943,7 @@ gtk_spin_button_timer (GtkSpinButton *spin_button) } } - GTK_THREADS_LEAVE; + GTK_THREADS_LEAVE (); return retval; } |