summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/tab-chrome.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tab-chrome.c b/src/tab-chrome.c
index f791a9f..c60a882 100644
--- a/src/tab-chrome.c
+++ b/src/tab-chrome.c
@@ -54,15 +54,15 @@ static GtkWidget *
back_forward_list_item_new(WebKitBackForwardListItem *list_item,
GtkWidget *icon)
{
- GtkWidget *list_item_box;
+ GtkWidget *box;
- list_item_box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
- gtk_box_pack_start(GTK_BOX(list_item_box), icon, FALSE, FALSE, 0);
- gtk_box_pack_start(GTK_BOX(list_item_box), gtk_label_new(
+ box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
+ gtk_box_pack_start(GTK_BOX(box), icon, FALSE, FALSE, 0);
+ gtk_box_pack_start(GTK_BOX(box), gtk_label_new(
webkit_back_forward_list_item_get_title(
list_item)), TRUE, TRUE, 0);
- return list_item_box;
+ return box;
}
static gboolean