Skip to content

Commit

Permalink
52_fix_implicit_declaration
Browse files Browse the repository at this point in the history
Origin: http://lists.opensuse.org/opensuse-commit/2009-07/msg00981.html
Description: Fix "implicitly converted to pointer at ignoregui.c:192" error.
This fixes a FTBFS in ia64 and amd64
  • Loading branch information
Fabrice Coutadeur authored and youknowone committed Apr 21, 2013
1 parent d6ebf02 commit c4adf60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fe-gtk/ignoregui.c
Expand Up @@ -174,7 +174,7 @@ ignore_treeview_new (GtkWidget *box)
for (col_id=0; (col = gtk_tree_view_get_column (GTK_TREE_VIEW (view), col_id));
col_id++)
{
GList *list = gtk_tree_view_column_get_cell_renderers (col);
GList *list = gtk_cell_layout_get_cells (GTK_CELL_LAYOUT (col));
GList *tmp;

for (tmp = list; tmp; tmp = tmp->next)
Expand Down

0 comments on commit c4adf60

Please sign in to comment.