diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-09-16 16:21:12 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-09-16 16:21:44 (EDT) |
commit | 21bcaf636f81b82559b70c11b47eeb3f73b218ca (patch) | |
tree | dbd51212ce4c7860ac89a4388224406dc678ab54 /src | |
parent | 5b77c77487c3abccf785921241bc6734ab09a3fe (diff) | |
download | marquee-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>.
Diffstat (limited to 'src')
-rw-r--r-- | src/tab.h | 2 | ||||
-rw-r--r-- | src/window.h | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -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; |