summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-09-17 18:28:08 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-09-17 18:28:08 (EDT)
commit5992a4f0da073629f70a1b6a090315ae51bc1bec (patch)
treebb0faa55f35687da8ff908ed8511d70ddc8ee912 /src
parent7720c99207b1cc53f1e9516a7a65ed1c72c63264 (diff)
downloadmarquee-5992a4f0da073629f70a1b6a090315ae51bc1bec.zip
marquee-5992a4f0da073629f70a1b6a090315ae51bc1bec.tar.gz
marquee-5992a4f0da073629f70a1b6a090315ae51bc1bec.tar.bz2
src/tab-chrome.c: s/uri_toolitem/uri_tool_item/
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 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();