summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-10-13 15:40:30 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-10-13 15:40:30 (EDT)
commit85687e733b1ac56f9c943bcd401c1a3ae6580b29 (patch)
tree37c3a0d3dabbc8e5c0d9281d38769bcb69184be5 /src
parentff321bb10e8eacdef7508cd9b7caf57739b18658 (diff)
downloadmarquee-85687e733b1ac56f9c943bcd401c1a3ae6580b29.zip
marquee-85687e733b1ac56f9c943bcd401c1a3ae6580b29.tar.gz
marquee-85687e733b1ac56f9c943bcd401c1a3ae6580b29.tar.bz2
src/*.h: Standardize, reorder, and fix #include directives
Diffstat (limited to 'src')
-rw-r--r--src/about.h1
-rw-r--r--src/back-forward-button-box.h2
-rw-r--r--src/find-toolbar.h1
-rw-r--r--src/home-button.h1
-rw-r--r--src/main-menu.h3
-rw-r--r--src/navigation-toolbar.h3
-rw-r--r--src/stop-reload-button.h3
-rw-r--r--src/tab.h3
-rw-r--r--src/uri-entry.h1
-rw-r--r--src/web-view.h1
-rw-r--r--src/window.h2
11 files changed, 15 insertions, 6 deletions
diff --git a/src/about.h b/src/about.h
index 7e527ea..41fb65f 100644
--- a/src/about.h
+++ b/src/about.h
@@ -22,6 +22,7 @@
#ifndef MQ_ABOUT_H
#define MQ_ABOUT_H
+#include <glib.h>
#include <webkit2/webkit2.h>
#include "application.h"
diff --git a/src/back-forward-button-box.h b/src/back-forward-button-box.h
index f79eefe..745eea7 100644
--- a/src/back-forward-button-box.h
+++ b/src/back-forward-button-box.h
@@ -25,9 +25,9 @@ typedef struct _MqBackForwardButtonBoxClass MqBackForwardButtonBoxClass;
#ifndef MQ_BACK_FORWARD_BUTTON_BOX_H
#define MQ_BACK_FORWARD_BUTTON_BOX_H
+#include <glib.h>
#include <gtk/gtk.h>
-#include "tab.h"
#include "web-view.h"
G_BEGIN_DECLS
diff --git a/src/find-toolbar.h b/src/find-toolbar.h
index fd7bf05..916a9c6 100644
--- a/src/find-toolbar.h
+++ b/src/find-toolbar.h
@@ -25,6 +25,7 @@ typedef struct _MqFindToolbarClass MqFindToolbarClass;
#ifndef MQ_FIND_TOOLBAR_H
#define MQ_FIND_TOOLBAR_H
+#include <glib.h>
#include <gtk/gtk.h>
#include <webkit2/webkit2.h>
diff --git a/src/home-button.h b/src/home-button.h
index 9fb7fc8..f7d61d8 100644
--- a/src/home-button.h
+++ b/src/home-button.h
@@ -25,6 +25,7 @@ typedef struct _MqHomeButtonClass MqHomeButtonClass;
#ifndef MQ_HOME_BUTTON_H
#define MQ_HOME_BUTTON_H
+#include <glib.h>
#include <gtk/gtk.h>
#include "config.h"
diff --git a/src/main-menu.h b/src/main-menu.h
index 757e87a..1a3575f 100644
--- a/src/main-menu.h
+++ b/src/main-menu.h
@@ -25,10 +25,11 @@ typedef struct _MqMainMenuClass MqMainMenuClass;
#ifndef MQ_MAIN_MENU_H
#define MQ_MAIN_MENU_H
+#include <glib.h>
#include <gtk/gtk.h>
-#include "tab.h"
#include "find-toolbar.h"
+#include "tab.h"
#include "web-view.h"
G_BEGIN_DECLS
diff --git a/src/navigation-toolbar.h b/src/navigation-toolbar.h
index 47ecc7d..03ea6e5 100644
--- a/src/navigation-toolbar.h
+++ b/src/navigation-toolbar.h
@@ -25,10 +25,11 @@ typedef struct _MqNavigationToolbarClass MqNavigationToolbarClass;
#ifndef MQ_NAVIGATION_TOOLBAR_H
#define MQ_NAVIGATION_TOOLBAR_H
+#include <glib.h>
#include <gtk/gtk.h>
-#include "tab.h"
#include "find-toolbar.h"
+#include "tab.h"
#include "web-view.h"
G_BEGIN_DECLS
diff --git a/src/stop-reload-button.h b/src/stop-reload-button.h
index 3d76340..9158782 100644
--- a/src/stop-reload-button.h
+++ b/src/stop-reload-button.h
@@ -25,10 +25,9 @@ typedef struct _MqStopReloadButtonClass MqStopReloadButtonClass;
#ifndef MQ_STOP_RELOAD_BUTTON_H
#define MQ_STOP_RELOAD_BUTTON_H
+#include <glib.h>
#include <gtk/gtk.h>
-#include "tab.h"
-#include "find-toolbar.h"
#include "web-view.h"
G_BEGIN_DECLS
diff --git a/src/tab.h b/src/tab.h
index 3f9e81b..6abdc43 100644
--- a/src/tab.h
+++ b/src/tab.h
@@ -24,11 +24,12 @@ typedef struct MqTab MqTab;
#ifndef MQ_TAB_H
#define MQ_TAB_H
+#include <glib.h>
#include <gtk/gtk.h>
+#include <webkit2/webkit2.h>
#include "application.h"
#include "window.h"
-#include "web-view.h"
struct MqTab {
MqTab *root;
diff --git a/src/uri-entry.h b/src/uri-entry.h
index 8ec4b9f..ef695b8 100644
--- a/src/uri-entry.h
+++ b/src/uri-entry.h
@@ -25,6 +25,7 @@ typedef struct _MqUriEntryClass MqUriEntryClass;
#ifndef MQ_URI_ENTRY_H
#define MQ_URI_ENTRY_H
+#include <glib.h>
#include <gtk/gtk.h>
#include "web-view.h"
diff --git a/src/web-view.h b/src/web-view.h
index a662641..6724652 100644
--- a/src/web-view.h
+++ b/src/web-view.h
@@ -25,6 +25,7 @@ typedef struct _MqWebViewClass MqWebViewClass;
#ifndef MQ_WEB_VIEW_H
#define MQ_WEB_VIEW_H
+#include <glib.h>
#include <gtk/gtk.h>
#include <webkit2/webkit2.h>
diff --git a/src/window.h b/src/window.h
index 94c526b..60c5738 100644
--- a/src/window.h
+++ b/src/window.h
@@ -24,9 +24,11 @@ typedef struct MqWindow MqWindow;
#ifndef MQ_WINDOW_H
#define MQ_WINDOW_H
+#include <glib.h>
#include <gtk/gtk.h>
#include "application.h"
+#include "config.h"
#include "tab.h"
struct MqWindow {