diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2014-09-08 20:11:23 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2014-09-08 20:11:23 +0000 |
commit | 2bdb96b086cfc4c6f1a320b5b11b75f100a2b757 (patch) | |
tree | b6dd1dc75d5b3d95c009048e364eb91520dab1e2 /app/cwm/xutil.c | |
parent | cfa2f9e3fff4a5b0c220b53b9452c6639debad63 (diff) |
Remove duplicate client queue (mruq); instead, remove and take the
global Clientq and place it inside screen_ctx since every client belongs
to a screen, then use the same per screen clientq to track stacking
order (the sole reason for mruq).
Diffstat (limited to 'app/cwm/xutil.c')
-rw-r--r-- | app/cwm/xutil.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/cwm/xutil.c b/app/cwm/xutil.c index 4edf760d4..6c426a9fd 100644 --- a/app/cwm/xutil.c +++ b/app/cwm/xutil.c @@ -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: xutil.c,v 1.91 2014/09/07 19:27:30 okan Exp $ + * $OpenBSD: xutil.c,v 1.92 2014/09/08 20:11:22 okan Exp $ */ #include <sys/param.h> @@ -214,13 +214,13 @@ xu_ewmh_net_client_list(struct screen_ctx *sc) Window *winlist; int i = 0, j = 0; - TAILQ_FOREACH(cc, &Clientq, entry) + TAILQ_FOREACH(cc, &sc->clientq, entry) i++; if (i == 0) return; winlist = xcalloc(i, sizeof(*winlist)); - TAILQ_FOREACH(cc, &Clientq, entry) + TAILQ_FOREACH(cc, &sc->clientq, entry) winlist[j++] = cc->win; XChangeProperty(X_Dpy, sc->rootwin, ewmh[_NET_CLIENT_LIST], XA_WINDOW, 32, PropModeReplace, (unsigned char *)winlist, i); |