Add screen_ctx to group_ctx, and populate on init.

This commit is contained in:
okan 2014-09-07 20:57:26 +00:00
parent 3d12b6d1d9
commit 5b46f0f7d8
2 changed files with 2 additions and 0 deletions

View File

@ -203,6 +203,7 @@ TAILQ_HEAD(cycle_entry_q, client_ctx);
struct group_ctx {
TAILQ_ENTRY(group_ctx) entry;
struct screen_ctx *sc;
struct client_ctx_q clients;
char *name;
int num;

View File

@ -124,6 +124,7 @@ group_init(struct screen_ctx *sc)
for (i = 0; i < CALMWM_NGROUPS; i++) {
gc = xcalloc(1, sizeof(*gc));
gc->sc = sc;
TAILQ_INIT(&gc->clients);
gc->name = xstrdup(num_to_name[i]);
gc->num = i;