diff options
Diffstat (limited to 'src/bookmarks/ephy-topic-factory-action.c')
-rw-r--r-- | src/bookmarks/ephy-topic-factory-action.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bookmarks/ephy-topic-factory-action.c b/src/bookmarks/ephy-topic-factory-action.c index 6c164807e..e8b8e583c 100644 --- a/src/bookmarks/ephy-topic-factory-action.c +++ b/src/bookmarks/ephy-topic-factory-action.c @@ -99,7 +99,7 @@ activate_item_cb (GtkWidget *menuitem, GtkWidget *placeholder) g_return_if_fail (model); children = gtk_container_get_children (GTK_CONTAINER (etoolbar)); - pos = g_list_index (children, toolbar->parent); + pos = g_list_index (children, gtk_widget_get_parent (toolbar)); index = gtk_toolbar_get_item_index (GTK_TOOLBAR (toolbar), GTK_TOOL_ITEM (item)); g_list_free (children); @@ -185,7 +185,7 @@ remove_placeholder_cb (GtkMenuShell *menushell, GtkWidget *placeholder) g_object_set_data (G_OBJECT (model), EGG_TOOLBARS_MODEL_DATA, NULL); children = gtk_container_get_children (GTK_CONTAINER (etoolbar)); - pos = g_list_index (children, toolbar->parent); + pos = g_list_index (children, gtk_widget_get_parent (toolbar)); index = gtk_toolbar_get_item_index (GTK_TOOLBAR (toolbar), GTK_TOOL_ITEM (item)); g_list_free (children); |