diff options
author | Matthias Clasen <mclasen@redhat.com> | 2009-06-16 12:21:36 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2009-06-16 12:21:36 -0400 |
commit | c12a8388f6f88477c0fcf52d66287d744d40929d (patch) | |
tree | f03eb366d75f4d8075b4f5d18208166b3d7bffaf /gtk/gtkcombobox.c | |
parent | 6fc9f57848f138db61b9e374ce4306305f556a77 (diff) | |
download | gtk+-c12a8388f6f88477c0fcf52d66287d744d40929d.tar.gz |
More instances of those deprecated functions
Diffstat (limited to 'gtk/gtkcombobox.c')
-rw-r--r-- | gtk/gtkcombobox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index 30545f6131..2a84a48fea 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -1732,7 +1732,7 @@ tree_column_row_is_sensitive (GtkComboBox *combo_box, priv->model, iter, FALSE, FALSE); - cells = gtk_tree_view_column_get_cell_renderers (priv->column); + cells = gtk_cell_layout_get_cells (GTK_CELL_LAYOUT (priv->column)); sensitive = FALSE; for (list = cells; list; list = list->next) @@ -4097,7 +4097,7 @@ gtk_combo_box_list_select_func (GtkTreeSelection *selection, gtk_tree_view_column_cell_set_cell_data (column, model, &iter, FALSE, FALSE); - cell = cells = gtk_tree_view_column_get_cell_renderers (column); + cell = cells = gtk_cell_layout_get_cells (GTK_CELL_LAYOUT (column)); while (cell) { g_object_get (cell->data, |