From 300b604efffc2173f1e692ef6bab59961d673260 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Thu, 12 Oct 2017 22:26:03 -0400 Subject: MqBackForwardButtonBox: Fix function names --- (limited to 'src') diff --git a/src/back-forward-button-box.c b/src/back-forward-button-box.c index 5531f56..d206905 100644 --- a/src/back-forward-button-box.c +++ b/src/back-forward-button-box.c @@ -213,7 +213,7 @@ event_box_button_press_cb(GtkWidget *widget, } /* Insert the current item. */ - gtk_list_box_prepend(GTK_LIST_BOX(list_box), back_forward_list_item_new( + gtk_list_box_prepend(GTK_LIST_BOX(list_box), list_item_new( webkit_back_forward_list_get_current_item( back_forward_list), 0)); gtk_list_box_select_row(GTK_LIST_BOX(list_box), @@ -232,7 +232,7 @@ event_box_button_press_cb(GtkWidget *widget, back_forward_button_box->back_items = 0; for (; list_item; list_item = list_item->next) { gtk_list_box_prepend(GTK_LIST_BOX(list_box), - back_forward_list_item_new(list_item->data, -1)); + list_item_new(list_item->data, -1)); gtk_text_buffer_get_start_iter(text_buffer, &text_iter); str = g_strdup_printf("%s\n", webkit_back_forward_list_item_get_uri(list_item->data)); -- cgit v0.9.1