diff options
author | okan | 2019-03-07 13:14:41 +0000 |
---|---|---|
committer | okan | 2019-03-07 13:14:41 +0000 |
commit | 39f6f479f6e5636dd0498d419a2172b9683f75ce (patch) | |
tree | 03ca887c30e655efdc249464f8aef91691225abb /calmwm.h | |
parent | 3ac2ad35ec0bf84d329aff3ee68fd551d4e14fc9 (diff) | |
download | cwm-39f6f479f6e5636dd0498d419a2172b9683f75ce.tar.gz |
gc clientq inside groups, instead use the better maintained one per-screen
Diffstat (limited to 'calmwm.h')
-rw-r--r-- | calmwm.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: calmwm.h,v 1.369 2019/03/07 12:54:21 okan Exp $ + * $OpenBSD: calmwm.h,v 1.370 2019/03/07 13:14:41 okan Exp $ */ #ifndef _CALMWM_H_ @@ -121,7 +121,6 @@ TAILQ_HEAD(ignore_q, winname); struct client_ctx { TAILQ_ENTRY(client_ctx) entry; - TAILQ_ENTRY(client_ctx) group_entry; struct screen_ctx *sc; struct group_ctx *gc; Window win; @@ -187,7 +186,6 @@ struct group_ctx { struct screen_ctx *sc; char *name; int num; - struct client_q clientq; }; TAILQ_HEAD(group_q, group_ctx); |