mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
Protect against tree_view being NULL. (#348652, Patrick K. O'Brian, Chris
2006-08-05 Matthias Clasen <mclasen@redhat.com> * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_layout_reorder): Protect against tree_view being NULL. (#348652, Patrick K. O'Brian, Chris Wilson)
This commit is contained in:
parent
dc62ec688e
commit
fee7714e01
@ -1,3 +1,9 @@
|
||||
2006-08-05 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_layout_reorder):
|
||||
Protect against tree_view being NULL. (#348652, Patrick K. O'Brian,
|
||||
Chris Wilson)
|
||||
|
||||
2006-08-03 Emmanuele Bassi <ebassi@gnome.org>
|
||||
|
||||
* gtk/gtkrecentchoosermenu.c:
|
||||
|
@ -1,3 +1,9 @@
|
||||
2006-08-05 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_layout_reorder):
|
||||
Protect against tree_view being NULL. (#348652, Patrick K. O'Brian,
|
||||
Chris Wilson)
|
||||
|
||||
2006-08-03 Emmanuele Bassi <ebassi@gnome.org>
|
||||
|
||||
* gtk/gtkrecentchoosermenu.c:
|
||||
|
@ -750,7 +750,8 @@ gtk_tree_view_column_cell_layout_reorder (GtkCellLayout *cell_layout,
|
||||
column->cell_list = g_list_remove_link (column->cell_list, link);
|
||||
column->cell_list = g_list_insert (column->cell_list, info, position);
|
||||
|
||||
gtk_widget_queue_draw (column->tree_view);
|
||||
if (column->tree_view)
|
||||
gtk_widget_queue_draw (column->tree_view);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user