diff options
author | okan | 2013-04-14 16:13:17 +0000 |
---|---|---|
committer | okan | 2013-04-14 16:13:17 +0000 |
commit | 75a771a90565abdcd59899872c239ad6c81ba800 (patch) | |
tree | 5f77b0738e8d147f2f1ba2fff7fc02830c82983c /xutil.c | |
parent | 09cfe97666b497284d112091bf41cc40a4320270 (diff) | |
download | cwm-75a771a90565abdcd59899872c239ad6c81ba800.tar.gz |
only a window is required to set WM_STATE. also un-confuse xu_ptr_getpos
by using 'win' instead of 'rootwin' so as not to imply only the root
window is queried, rather any window.
Diffstat (limited to 'xutil.c')
-rw-r--r-- | xutil.c | 10 |
1 files changed, 5 insertions, 5 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: xutil.c,v 1.53 2013/04/10 19:08:09 okan Exp $ + * $OpenBSD: xutil.c,v 1.54 2013/04/14 16:13:17 okan Exp $ */ #include <sys/param.h> @@ -72,13 +72,13 @@ xu_btn_ungrab(Window win, int mask, u_int btn) } void -xu_ptr_getpos(Window rootwin, int *x, int *y) +xu_ptr_getpos(Window win, int *x, int *y) { Window w0, w1; int tmp0, tmp1; u_int tmp2; - XQueryPointer(X_Dpy, rootwin, &w0, &w1, &tmp0, &tmp1, x, y, &tmp2); + XQueryPointer(X_Dpy, win, &w0, &w1, &tmp0, &tmp1, x, y, &tmp2); } void @@ -203,11 +203,11 @@ xu_getstrprop(Window win, Atom atm, char **text) { } int -xu_getstate(struct client_ctx *cc, int *state) +xu_getstate(Window win, int *state) { long *p = NULL; - if (xu_getprop(cc->win, cwmh[WM_STATE].atom, cwmh[WM_STATE].atom, 2L, + if (xu_getprop(win, cwmh[WM_STATE].atom, cwmh[WM_STATE].atom, 2L, (u_char **)&p) <= 0) return (-1); |