diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-10-12 22:26:03 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-10-12 22:26:03 (EDT) |
commit | 300b604efffc2173f1e692ef6bab59961d673260 (patch) | |
tree | c0b882a1566ddb817633e62ba82909e3876f970f /src | |
parent | ddf4e2719e46a947e89ff835de0720c8b45df395 (diff) | |
download | marquee-300b604efffc2173f1e692ef6bab59961d673260.zip marquee-300b604efffc2173f1e692ef6bab59961d673260.tar.gz marquee-300b604efffc2173f1e692ef6bab59961d673260.tar.bz2 |
MqBackForwardButtonBox: Fix function names
Diffstat (limited to 'src')
-rw-r--r-- | src/back-forward-button-box.c | 4 |
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)); |