Fix typo (list->data becomes list->next)

* gtk/gtktreeview.c (gtk_tree_view_get_expander_column):
Fix typo (list->data becomes list->next)
This commit is contained in:
Padraig O'Briain
2001-12-18 08:06:34 +00:00
parent 786fe283d8
commit b2925eba12
8 changed files with 36 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-12-18 Padraig O'Briain <padraig.obriain@sun.com>
* gtk/gtktreeview.c (gtk_tree_view_get_expander_column):
Fix typo (list->data becomes list->next)
2001-12-06 Havoc Pennington <hp@redhat.com>
Add Unicode control char menu, based on patch from Dov.

View File

@ -1,3 +1,8 @@
2001-12-18 Padraig O'Briain <padraig.obriain@sun.com>
* gtk/gtktreeview.c (gtk_tree_view_get_expander_column):
Fix typo (list->data becomes list->next)
2001-12-06 Havoc Pennington <hp@redhat.com>
Add Unicode control char menu, based on patch from Dov.

View File

@ -1,3 +1,8 @@
2001-12-18 Padraig O'Briain <padraig.obriain@sun.com>
* gtk/gtktreeview.c (gtk_tree_view_get_expander_column):
Fix typo (list->data becomes list->next)
2001-12-06 Havoc Pennington <hp@redhat.com>
Add Unicode control char menu, based on patch from Dov.

View File

@ -1,3 +1,8 @@
2001-12-18 Padraig O'Briain <padraig.obriain@sun.com>
* gtk/gtktreeview.c (gtk_tree_view_get_expander_column):
Fix typo (list->data becomes list->next)
2001-12-06 Havoc Pennington <hp@redhat.com>
Add Unicode control char menu, based on patch from Dov.

View File

@ -1,3 +1,8 @@
2001-12-18 Padraig O'Briain <padraig.obriain@sun.com>
* gtk/gtktreeview.c (gtk_tree_view_get_expander_column):
Fix typo (list->data becomes list->next)
2001-12-06 Havoc Pennington <hp@redhat.com>
Add Unicode control char menu, based on patch from Dov.

View File

@ -1,3 +1,8 @@
2001-12-18 Padraig O'Briain <padraig.obriain@sun.com>
* gtk/gtktreeview.c (gtk_tree_view_get_expander_column):
Fix typo (list->data becomes list->next)
2001-12-06 Havoc Pennington <hp@redhat.com>
Add Unicode control char menu, based on patch from Dov.

View File

@ -1,3 +1,8 @@
2001-12-18 Padraig O'Briain <padraig.obriain@sun.com>
* gtk/gtktreeview.c (gtk_tree_view_get_expander_column):
Fix typo (list->data becomes list->next)
2001-12-06 Havoc Pennington <hp@redhat.com>
Add Unicode control char menu, based on patch from Dov.

View File

@ -7329,7 +7329,7 @@ gtk_tree_view_get_expander_column (GtkTreeView *tree_view)
g_return_val_if_fail (GTK_IS_TREE_VIEW (tree_view), NULL);
for (list = tree_view->priv->columns; list; list = list->data)
for (list = tree_view->priv->columns; list; list = list->next)
if (gtk_tree_view_is_expander_column (tree_view, GTK_TREE_VIEW_COLUMN (list->data)))
return (GtkTreeViewColumn *) list->data;
return NULL;