From 5992a4f0da073629f70a1b6a090315ae51bc1bec Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 17 Sep 2017 18:28:08 -0400 Subject: src/tab-chrome.c: s/uri_toolitem/uri_tool_item/ --- (limited to 'src') diff --git a/src/tab-chrome.c b/src/tab-chrome.c index 9120f5b..241c76d 100644 --- a/src/tab-chrome.c +++ b/src/tab-chrome.c @@ -64,7 +64,7 @@ navigation_toolbar_new(MqTabChrome *chrome, gchar *uri) GtkToolbar *navigation_toolbar; GtkToolItem *back_forward_tool_item; GtkWidget *back_forward_box; - GtkToolItem *uri_toolitem; + GtkToolItem *uri_tool_item; navigation_toolbar = GTK_TOOLBAR(gtk_toolbar_new()); @@ -113,7 +113,7 @@ navigation_toolbar_new(MqTabChrome *chrome, gchar *uri) gtk_toolbar_insert(navigation_toolbar, chrome->stop_reload_button, -1); /* URI bar */ - uri_toolitem = gtk_tool_item_new(); + uri_tool_item = gtk_tool_item_new(); chrome->uri_entry = gtk_entry_new(); gtk_entry_set_text(GTK_ENTRY(chrome->uri_entry), uri); gtk_entry_set_placeholder_text(GTK_ENTRY(chrome->uri_entry), @@ -123,10 +123,10 @@ navigation_toolbar_new(MqTabChrome *chrome, gchar *uri) gtk_entry_set_progress_fraction(GTK_ENTRY(chrome->uri_entry), 0.0); g_signal_connect(chrome->uri_entry, "activate", G_CALLBACK(uri_activate_cb), chrome); - gtk_container_add(GTK_CONTAINER(uri_toolitem), + gtk_container_add(GTK_CONTAINER(uri_tool_item), chrome->uri_entry); - gtk_tool_item_set_expand(uri_toolitem, TRUE); - gtk_toolbar_insert(navigation_toolbar, uri_toolitem, -1); + gtk_tool_item_set_expand(uri_tool_item, TRUE); + gtk_toolbar_insert(navigation_toolbar, uri_tool_item, -1); /* URI bar hovered link style */ chrome->hovered_link_style = pango_attr_list_new(); -- cgit v0.9.1