diff options
author | Lars Hamann <lars@gtk.org> | 1998-08-02 22:18:20 +0000 |
---|---|---|
committer | Lars Hamann <lars@src.gnome.org> | 1998-08-02 22:18:20 +0000 |
commit | c3c5e7215115ece0577fbf07357dc6b93e02c55e (patch) | |
tree | 7d23bea87d79289ccfcd8278a878fc12e921aa49 /gtk/gtkcombo.c | |
parent | d5979375601ac3b69eb457f36af87425daffe21e (diff) | |
download | gtk+-c3c5e7215115ece0577fbf07357dc6b93e02c55e.tar.gz |
reset drag_pos after abort removed a few unneeded lines fixed compiler
Mon Aug 3 00:04:09 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (abort_column_resize): reset drag_pos after abort
* gtk/gtkclist.c (gtk_clist_key_press): removed a few unneeded lines
* gtk/gtkcombo.c (gtk_combo_list_key_press): fixed compiler warning
Diffstat (limited to 'gtk/gtkcombo.c')
-rw-r--r-- | gtk/gtkcombo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcombo.c b/gtk/gtkcombo.c index 03b24e1ecc..a392df9637 100644 --- a/gtk/gtkcombo.c +++ b/gtk/gtkcombo.c @@ -607,7 +607,7 @@ gtk_combo_list_key_press (GtkWidget * widget, GdkEventKey * event, GtkCombo * co { combo->current_button = 0; GTK_BUTTON (combo->button)->in_button = FALSE; - gtk_button_released (combo->button); + gtk_button_released (GTK_BUTTON (combo->button)); gtk_grab_remove (combo->button); } return TRUE; |