diff options
author | Manish Singh <yosh@src.gnome.org> | 1998-11-08 05:58:41 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 1998-11-08 05:58:41 +0000 |
commit | 3c07b7ebbd3d6ddb3dae9bdee185d14c6adaea56 (patch) | |
tree | 7f8cbb123b28b658a0530af5742ac4d000fa4d93 /gtk/gtkrc.c | |
parent | a77c4da512b1e3fedce9d9105d8961e47f6e5100 (diff) | |
download | gdk-pixbuf-3c07b7ebbd3d6ddb3dae9bdee185d14c6adaea56.tar.gz |
check if column[i].button is valid before calling gtk_widget_intersect on
* gtk/gtkclist.c: check if column[i].button is valid before calling
gtk_widget_intersect on it in gtk_clist_draw
* gtk/gtkdnd.c: removed unused variable empty_bits
* gtk/gtkrc.c: we should use gslist_* functions with GSLists...
* gtk/gtktypeutils.[ch]: makes more send for gtk_type_is_a to return
a boolean (thanks to Elrond for noticing this)
-Yosh
Diffstat (limited to 'gtk/gtkrc.c')
-rw-r--r-- | gtk/gtkrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkrc.c b/gtk/gtkrc.c index 0f3767a03..fb006fb24 100644 --- a/gtk/gtkrc.c +++ b/gtk/gtkrc.c @@ -612,7 +612,7 @@ gtk_rc_get_style (GtkWidget *widget) rc_style_key_id); if (widget_rc_style) - rc_styles = g_list_prepend (rc_styles, widget_rc_style); + rc_styles = g_slist_prepend (rc_styles, widget_rc_style); if (gtk_rc_sets_widget) { |