summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-10-17 00:29:48 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-10-17 00:29:48 (EDT)
commit8c20979ef34de5b073dbcb61fc3581798d5e2b8a (patch)
tree39e26470d0dcc80d85afd7c6ae080cf80208523b /src
parentcd57d4bf14847506ef28d7d4939a2fbc5f97c2d1 (diff)
downloadmarquee-8c20979ef34de5b073dbcb61fc3581798d5e2b8a.zip
marquee-8c20979ef34de5b073dbcb61fc3581798d5e2b8a.tar.gz
marquee-8c20979ef34de5b073dbcb61fc3581798d5e2b8a.tar.bz2
mq_tab_label_new(): Change return type to GtkWidget
Diffstat (limited to 'src')
-rw-r--r--src/tab-label.c2
-rw-r--r--src/tab-label.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tab-label.c b/src/tab-label.c
index 33be557..106a92d 100644
--- a/src/tab-label.c
+++ b/src/tab-label.c
@@ -254,7 +254,7 @@ mq_tab_label_init(MqTabLabel *tab_label)
gtk_container_add(GTK_CONTAINER(tab_label), box);
}
-MqTabLabel *
+GtkWidget *
mq_tab_label_new(MqTab *tab, MqWebView *web_view)
{
return g_object_new(MQ_TYPE_TAB_LABEL,
diff --git a/src/tab-label.h b/src/tab-label.h
index 13a7bcb..88392de 100644
--- a/src/tab-label.h
+++ b/src/tab-label.h
@@ -49,7 +49,7 @@ G_BEGIN_DECLS
GType
mq_tab_label_get_type(void);
-MqTabLabel *
+GtkWidget *
mq_tab_label_new(MqTab *tab, MqWebView *web_view);
void