summaryrefslogtreecommitdiffstats
path: root/src/tab.c
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-09-21 23:57:34 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-09-21 23:57:34 (EDT)
commitd0f1011e869717484e94cda4e922071b5f82ec32 (patch)
tree5c8d0a69bdfa0a0f4c4c258edcaf7d889094e3a0 /src/tab.c
parentf6c1261a62fa56c593a90ce36a3231671b773a19 (diff)
downloadmarquee-d0f1011e869717484e94cda4e922071b5f82ec32.zip
marquee-d0f1011e869717484e94cda4e922071b5f82ec32.tar.gz
marquee-d0f1011e869717484e94cda4e922071b5f82ec32.tar.bz2
MqTabChrome: Drop saving of tab image and label
Diffstat (limited to 'src/tab.c')
-rw-r--r--src/tab.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tab.c b/src/tab.c
index 223b751..b8a7b52 100644
--- a/src/tab.c
+++ b/src/tab.c
@@ -64,7 +64,7 @@ mq_tab_new(gchar *uri, GtkWidget *tab_image, GtkWidget *tab_label)
tab = malloc(sizeof(*tab));
tab->tab_image = tab_image;
tab->tab_label = tab_label;
- tab->chrome = mq_tab_chrome_new(uri, tab_image, tab_label);
+ tab->chrome = mq_tab_chrome_new(uri);
tab->body = mq_tab_body_new(uri);
tab->web_view = mq_tab_body_get_web_view(tab->body);
/* FIXME: Doesn't work? */