summaryrefslogtreecommitdiffstats
path: root/src/tab.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tab.h')
-rw-r--r--src/tab.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tab.h b/src/tab.h
index 6316b02..d6ce5d9 100644
--- a/src/tab.h
+++ b/src/tab.h
@@ -27,6 +27,7 @@ typedef struct MqTab MqTab;
#include <gtk/gtk.h>
#include "application.h"
+#include "window.h"
#include "tab-chrome.h"
#include "tab-body.h"
@@ -39,6 +40,7 @@ struct MqTab {
guint position;
guint tree_size;
MqApplication *application;
+ MqWindow *window;
GtkWidget *container;
MqTabChrome *chrome;
MqTabBody *body;
@@ -52,10 +54,10 @@ struct MqTab {
};
MqTab *
-mq_tab_new(MqApplication *application, gchar *uri, MqTab *source);
+mq_tab_new(MqWindow *window, gchar *uri, MqTab *source);
MqTab *
-mq_tab_new_relative(MqApplication *application, gchar *uri, MqTab *source);
+mq_tab_new_relative(MqWindow *window, gchar *uri, MqTab *source);
MqTab *
mq_tab_new_root(void);