summaryrefslogtreecommitdiff
path: root/gtk/gtkwindow.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2018-02-09 00:42:38 +0100
committerBenjamin Otte <otte@redhat.com>2018-02-09 00:42:38 +0100
commit3bb95a09bb7453d9550400feab3324afe9b98a96 (patch)
treefb6271e58607cf9271bd0c7c83cb4b672b2084d5 /gtk/gtkwindow.c
parent9c7874214e05132b7e1bb97a28ad0b2df02b5cfe (diff)
downloadgtk+-3bb95a09bb7453d9550400feab3324afe9b98a96.tar.gz
a11y: Remove gtk.h include from container accessible
Diffstat (limited to 'gtk/gtkwindow.c')
-rw-r--r--gtk/gtkwindow.c62
1 files changed, 35 insertions, 27 deletions
diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c
index 45e109b0ad..203f638ad2 100644
--- a/gtk/gtkwindow.c
+++ b/gtk/gtkwindow.c
@@ -24,56 +24,64 @@
#include "config.h"
-#include <cairo-gobject.h>
-
-#include "gtkwindow.h"
-
-#include <string.h>
-#include <stdlib.h>
-#include <errno.h>
-#include <limits.h>
-#include <graphene.h>
-
-#include "gtkprivate.h"
#include "gtkwindowprivate.h"
+
#include "gtkaccelgroupprivate.h"
+#include "gtkapplicationprivate.h"
#include "gtkbindings.h"
+#include "gtkbox.h"
+#include "gtkbuildable.h"
+#include "gtkbuilderprivate.h"
+#include "gtkbutton.h"
+#include "gtkcheckbutton.h"
+#include "gtkcheckmenuitem.h"
#include "gtkcontainerprivate.h"
#include "gtkcsscornervalueprivate.h"
#include "gtkcssiconthemevalueprivate.h"
#include "gtkcssrgbavalueprivate.h"
#include "gtkcssshadowsvalueprivate.h"
+#include "gtkcssstylepropertyprivate.h"
#include "gtkdebugupdatesprivate.h"
+#include "gtkdragdest.h"
+#include "gtkgesturedrag.h"
+#include "gtkgesturemultipress.h"
+#include "gtkgestureprivate.h"
+#include "gtkheaderbarprivate.h"
+#include "gtkicontheme.h"
+#include "gtkintl.h"
#include "gtkkeyhash.h"
#include "gtkmain.h"
+#include "gtkmarshalers.h"
+#include "gtkmessagedialog.h"
#include "gtkmnemonichash.h"
+#include "gtkmenu.h"
#include "gtkmenubar.h"
#include "gtkmenushellprivate.h"
-#include "gtkicontheme.h"
-#include "gtkmarshalers.h"
-#include "gtkbuildable.h"
-#include "gtkbuilderprivate.h"
-#include "gtkwidgetprivate.h"
-#include "gtkcontainerprivate.h"
-#include "gtkintl.h"
+#include "gtkpointerfocusprivate.h"
+#include "gtkpopoverprivate.h"
+#include "gtkprivate.h"
+#include "gtkseparatormenuitem.h"
+#include "gtksettings.h"
+#include "gtksnapshot.h"
#include "gtkstylecontextprivate.h"
#include "gtktypebuiltins.h"
-#include "gtkbox.h"
-#include "gtkbutton.h"
-#include "gtkheaderbar.h"
-#include "gtkheaderbarprivate.h"
-#include "gtkpopoverprivate.h"
+#include "gtkwidgetprivate.h"
+#include "gtkwindowgroup.h"
+
#include "a11y/gtkwindowaccessible.h"
#include "a11y/gtkcontaineraccessibleprivate.h"
-#include "gtkapplicationprivate.h"
-#include "gtkgestureprivate.h"
#include "inspector/init.h"
#include "inspector/window.h"
-#include "gtkcssstylepropertyprivate.h"
-#include "gtkpointerfocusprivate.h"
#include "gdk/gdk-private.h"
+#include <cairo-gobject.h>
+#include <errno.h>
+#include <graphene.h>
+#include <limits.h>
+#include <string.h>
+#include <stdlib.h>
+
#ifdef GDK_WINDOWING_X11
#include "x11/gdkx.h"
#endif