summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-09-16 16:21:12 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-09-16 16:21:44 (EDT)
commit21bcaf636f81b82559b70c11b47eeb3f73b218ca (patch)
treedbd51212ce4c7860ac89a4388224406dc678ab54
parent5b77c77487c3abccf785921241bc6734ab09a3fe (diff)
downloadmarquee-21bcaf636f81b82559b70c11b47eeb3f73b218ca.zip
marquee-21bcaf636f81b82559b70c11b47eeb3f73b218ca.tar.gz
marquee-21bcaf636f81b82559b70c11b47eeb3f73b218ca.tar.bz2
src/*.h: Include <gtk.h>
The corresponding *.c files were already doing this, but it's proper to do it in any file that uses things from <gtk.h>.
-rw-r--r--src/tab.h2
-rw-r--r--src/window.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/tab.h b/src/tab.h
index 8024c52..073049c 100644
--- a/src/tab.h
+++ b/src/tab.h
@@ -19,6 +19,8 @@
* along with Marquee. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <gtk.h>
+
#include "tab-chrome.h"
typedef struct {
diff --git a/src/window.h b/src/window.h
index 1c0cf54..0741423 100644
--- a/src/window.h
+++ b/src/window.h
@@ -19,6 +19,8 @@
* along with Marquee. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <gtk.h>
+
typedef struct {
GtkWidget *gtk_window;
GtkWidget *gtk_notebook;