diff options
author | Tim Janik <timj@gimp.org> | 1998-03-17 03:16:11 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-03-17 03:16:11 +0000 |
commit | 077b5109a4a29187ccf8388fe90251e435089f5b (patch) | |
tree | 3367814540c4de6ec370e8c6c88bbaa782d9c4fe /gtk/gtkspinbutton.c | |
parent | 444c9529db851e8b26217d9434f7bfe14ab36cf9 (diff) | |
download | gdk-pixbuf-077b5109a4a29187ccf8388fe90251e435089f5b.tar.gz |
exported gtk_spin_button_spin since it is used in testgtk, and besides
Tue Mar 17 03:56:13 1998 Tim Janik <timj@gimp.org>
* gtk/gtkspinbutton.h: exported gtk_spin_button_spin since it is
used in testgtk, and besides that.
* gtk/testgtk.c: created a new "test" cursors, which showes different
types of GdkCursors and is a very simple example at using the drawing
area.
Tue Mar 17 03:56:13 1998 Tim Janik <timj@gimp.org>
* gtk/gtkspinbutton.h: exported gtk_spin_button_spin since it is
used in testgtk, and besides that.
* gtk/testgtk.c: created a new "test" cursors, which showes different
types of GdkCursors and is a very simple example at using the drawing
area.
Diffstat (limited to 'gtk/gtkspinbutton.c')
-rw-r--r-- | gtk/gtkspinbutton.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c index db6149fa1..3f014e04b 100644 --- a/gtk/gtkspinbutton.c +++ b/gtk/gtkspinbutton.c @@ -70,9 +70,6 @@ static gint gtk_spin_button_focus_out (GtkWidget *widget, static void gtk_spin_button_draw_arrow (GtkSpinButton *spin_button, guint arrow); static gint gtk_spin_button_timer (GtkSpinButton *spin_button); -static void gtk_spin_button_spin (GtkSpinButton *spin_button, - guint direction, - gfloat step); static void gtk_spin_button_value_changed (GtkWidget *widget, GtkSpinButton *spin_button); static gint gtk_spin_button_key_press (GtkWidget *widget, @@ -756,7 +753,7 @@ gtk_spin_button_timer (GtkSpinButton *spin_button) return FALSE; } -static void +void gtk_spin_button_spin (GtkSpinButton *spin_button, guint direction, gfloat step) |