Add a few missing include guards

This commit is contained in:
Matthias Clasen 2014-10-01 00:49:59 -04:00
parent 619aeb643f
commit 95d76d0132
3 changed files with 12 additions and 0 deletions

View File

@ -20,6 +20,10 @@
#ifndef __GTK_APPLICATION_WINDOW_H__
#define __GTK_APPLICATION_WINDOW_H__
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
#error "Only <gtk/gtk.h> can be included directly."
#endif
#include <gtk/gtkwindow.h>
G_BEGIN_DECLS

View File

@ -22,6 +22,10 @@
#ifndef __GTK_STACK_H__
#define __GTK_STACK_H__
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
#error "Only <gtk/gtk.h> can be included directly."
#endif
#include <gtk/gtkcontainer.h>
G_BEGIN_DECLS

View File

@ -20,6 +20,10 @@
#ifndef __GTK_STACK_SWITCHER_H__
#define __GTK_STACK_SWITCHER_H__
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
#error "Only <gtk/gtk.h> can be included directly."
#endif
#include <gtk/gtkbox.h>
#include <gtk/gtkstack.h>