summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tab.c2
-rw-r--r--src/tab.h2
-rw-r--r--src/window.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/tab.c b/src/tab.c
index d559e9e..1268478 100644
--- a/src/tab.c
+++ b/src/tab.c
@@ -28,7 +28,7 @@
#include "tab-body.h"
MqTab *
-mq_tab_new(gchar *uri)
+mq_tab_new(gchar *uri, GtkWidget *tab_label)
{
MqTab *tab;
diff --git a/src/tab.h b/src/tab.h
index 1871187..b2f871f 100644
--- a/src/tab.h
+++ b/src/tab.h
@@ -34,7 +34,7 @@ typedef struct {
} MqTab;
MqTab *
-mq_tab_new(gchar *uri);
+mq_tab_new(gchar *uri, GtkWidget *tab_label);
GtkWidget *
mq_tab_get_container(MqTab *tab);
diff --git a/src/window.c b/src/window.c
index a3f0c49..275829e 100644
--- a/src/window.c
+++ b/src/window.c
@@ -45,7 +45,7 @@ add_tab(MqWindow *window, gchar *uri, gint position)
1, 0, 1, 1);
gtk_widget_show_all(tab_label);
- tab = mq_tab_new(uri);
+ tab = mq_tab_new(uri, tab_label);
tab_widget = mq_tab_get_container(tab);
position = gtk_notebook_insert_page(GTK_NOTEBOOK(window->notebook),