summary refs log tree commit diff
path: root/calmwm.h
diff options
context:
space:
mode:
authorokan <okan>2014-10-08 12:48:51 +0000
committerokan <okan>2014-10-08 12:48:51 +0000
commit836c9f49d644e52395a12d0805260e070c999099 (patch)
tree439aa78537067b62302252c3c01c1edf24f4beb2 /calmwm.h
parente9dbd150eaf14d230e7aa6191e5762b69e6b1241 (diff)
downloadcwm-836c9f49d644e52395a12d0805260e070c999099.tar.gz
cwm-836c9f49d644e52395a12d0805260e070c999099.tar.xz
cwm-836c9f49d644e52395a12d0805260e070c999099.zip
make group_init work like other *_init's
Diffstat (limited to 'calmwm.h')
-rw-r--r--calmwm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/calmwm.h b/calmwm.h
index 00d09bb..80e2554 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -202,9 +202,9 @@ TAILQ_HEAD(client_ctx_q, client_ctx);
 struct group_ctx {
 	TAILQ_ENTRY(group_ctx)	 entry;
 	struct screen_ctx	*sc;
-	struct client_ctx_q	 clientq;
 	char			*name;
 	int			 num;
+	struct client_ctx_q	 clientq;
 };
 TAILQ_HEAD(group_ctx_q, group_ctx);
 
@@ -410,7 +410,7 @@ void			 group_hide(struct group_ctx *);
 void			 group_hidetoggle(struct screen_ctx *, int);
 int			 group_holds_only_hidden(struct group_ctx *);
 int			 group_holds_only_sticky(struct group_ctx *);
-void			 group_init(struct screen_ctx *);
+void			 group_init(struct screen_ctx *, int);
 void			 group_movetogroup(struct client_ctx *, int);
 void			 group_only(struct screen_ctx *, int);
 void			 group_show(struct group_ctx *);