summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/back-forward-button-box.c4
1 files changed, 2 insertions, 2 deletions
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));