summaryrefslogtreecommitdiff
path: root/src/x11/group.c
diff options
context:
space:
mode:
authorJonas Ådahl <jadahl@gmail.com>2018-07-10 10:36:24 +0200
committerJonas Ådahl <jadahl@gmail.com>2018-11-06 17:17:36 +0100
commit2f4a68c8c3690663c7f0dbdd7aaa55ee9963a231 (patch)
treeb2dbb261e756f8b7a3c5e0ba2241546fe05901c0 /src/x11/group.c
parent92f4ffc0dd66faa77a96e130562b77c716e26f3b (diff)
downloadmutter-2f4a68c8c3690663c7f0dbdd7aaa55ee9963a231.tar.gz
Clean up include macros mess
The order and way include macros were structured was chaotic, with no real common thread between files. Try to tidy up the mess with some common scheme, to make things look less messy.
Diffstat (limited to 'src/x11/group.c')
-rw-r--r--src/x11/group.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/x11/group.c b/src/x11/group.c
index b69586de7..a3227467f 100644
--- a/src/x11/group.c
+++ b/src/x11/group.c
@@ -25,15 +25,18 @@
*
*/
-#include <config.h>
-#include <meta/util.h>
-#include "group-private.h"
-#include "group-props.h"
-#include "window-private.h"
-#include "x11/meta-x11-display-private.h"
-#include <meta/window.h>
+#include "config.h"
+
+#include "x11/group-private.h"
+
#include <X11/Xlib-xcb.h>
+#include "core/window-private.h"
+#include "meta/util.h"
+#include "meta/window.h"
+#include "x11/group-props.h"
+#include "x11/meta-x11-display-private.h"
+
static MetaGroup*
meta_group_new (MetaX11Display *x11_display,
Window group_leader)