diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-10-14 22:05:51 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-10-14 22:09:36 -0400 |
commit | bda1f3558504266cde3cb2bbe247dd489bcda941 (patch) | |
tree | e66521ee70a93e48a52e124f25af2e1258d9fdf9 /gdk/x11/gdkproperty-x11.c | |
parent | 88ef199ed713412a1825942f2929d382bf0b05f4 (diff) | |
download | gtk+-bda1f3558504266cde3cb2bbe247dd489bcda941.tar.gz |
Inclusion cleanups in sources
Try to do inclusions in the same sequence, more or less.
Diffstat (limited to 'gdk/x11/gdkproperty-x11.c')
-rw-r--r-- | gdk/x11/gdkproperty-x11.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gdk/x11/gdkproperty-x11.c b/gdk/x11/gdkproperty-x11.c index 55e114f225..4f8d51bea3 100644 --- a/gdk/x11/gdkproperty-x11.c +++ b/gdk/x11/gdkproperty-x11.c @@ -25,18 +25,20 @@ */ #include "config.h" -#include <X11/Xlib.h> -#include <X11/Xatom.h> -#include <string.h> -#include "gdk.h" /* For gdk_error_trap_push/pop() */ -#include "gdkx.h" #include "gdkproperty.h" + +#include "gdkmain.h" +#include "gdkx.h" #include "gdkprivate.h" #include "gdkinternals.h" #include "gdkdisplay-x11.h" #include "gdkscreen-x11.h" -#include "gdkselection.h" /* only from predefined atom */ +#include "gdkselection.h" + +#include <X11/Xlib.h> +#include <X11/Xatom.h> +#include <string.h> static GPtrArray *virtual_atom_array; |