summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-09-18 19:23:16 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-09-18 19:23:39 (EDT)
commit78963fc8b53abe5fe8e614de31266458e9b7f66a (patch)
treee1f501d035d40ee5063b352d884cbecd436d1988 /src
parentefe71c15431326a71ba790d41481397355404f9b (diff)
downloadmarquee-78963fc8b53abe5fe8e614de31266458e9b7f66a.zip
marquee-78963fc8b53abe5fe8e614de31266458e9b7f66a.tar.gz
marquee-78963fc8b53abe5fe8e614de31266458e9b7f66a.tar.bz2
src/tab-chrome.c: Shorten a variable name
Diffstat (limited to 'src')
-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