summaryrefslogtreecommitdiffstats
path: root/src/window.h
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-10-18 00:17:02 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-10-18 00:17:02 (EDT)
commit80bbf932e7eee44e7b5fa327731589d1c676e0ac (patch)
treeecd625576e85aa07a4a2e8d04fe161a4618e56a9 /src/window.h
parent8f9525ec9867c83ef8871a7289dde6127c78f0f8 (diff)
downloadmarquee-80bbf932e7eee44e7b5fa327731589d1c676e0ac.zip
marquee-80bbf932e7eee44e7b5fa327731589d1c676e0ac.tar.gz
marquee-80bbf932e7eee44e7b5fa327731589d1c676e0ac.tar.bz2
MqWindow: Use MqTabPage
Diffstat (limited to 'src/window.h')
-rw-r--r--src/window.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.h b/src/window.h
index 60c5738..bd98d23 100644
--- a/src/window.h
+++ b/src/window.h
@@ -29,14 +29,14 @@ typedef struct MqWindow MqWindow;
#include "application.h"
#include "config.h"
-#include "tab.h"
+#include "tab-page.h"
struct MqWindow {
MqApplication *application;
MqConfig *config;
GtkWidget *window;
GtkWidget *notebook;
- MqTab *root_tab;
+ MqTabPage *root_tab;
guint current_tab;
gboolean fullscreen;
};