diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2013-04-17 13:57:07 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2013-04-17 13:57:07 +0000 |
commit | b8bb34fcbff55d20b6ee7373685b86c7d5a8284d (patch) | |
tree | dc4f14cfef0ce0426227d15b6eb2f53e5d260780 /app/cwm/client.c | |
parent | 974feb6c52be144941bb9b8802ae8212f498d448 (diff) |
mechanical xu_{get,set}state -> xu_{get,set}_wm_state change
Diffstat (limited to 'app/cwm/client.c')
-rw-r--r-- | app/cwm/client.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/cwm/client.c b/app/cwm/client.c index 117018411..48d9063d3 100644 --- a/app/cwm/client.c +++ b/app/cwm/client.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: client.c,v 1.126 2013/04/17 13:52:20 okan Exp $ + * $OpenBSD: client.c,v 1.127 2013/04/17 13:57:06 okan Exp $ */ #include <sys/param.h> @@ -105,14 +105,14 @@ client_new(Window win, struct screen_ctx *sc, int mapped) if ((wmhints = XGetWMHints(X_Dpy, cc->win)) != NULL) { if (wmhints->flags & StateHint) { cc->state = wmhints->initial_state; - xu_setstate(cc->win, cc->state); + xu_set_wm_state(cc->win, cc->state); } XFree(wmhints); } } client_draw_border(cc); - if (xu_getstate(cc->win, &state) < 0) + if (xu_get_wm_state(cc->win, &state) < 0) state = NormalState; XSelectInput(X_Dpy, cc->win, ColormapChangeMask | EnterWindowMask | @@ -153,7 +153,7 @@ client_delete(struct client_ctx *cc) XGrabServer(X_Dpy); cc->state = WithdrawnState; - xu_setstate(cc->win, cc->state); + xu_set_wm_state(cc->win, cc->state); XRemoveFromSaveSet(X_Dpy, cc->win); XSync(X_Dpy, False); @@ -454,7 +454,7 @@ client_hide(struct client_ctx *cc) cc->active = 0; cc->flags |= CLIENT_HIDDEN; cc->state = IconicState; - xu_setstate(cc->win, cc->state); + xu_set_wm_state(cc->win, cc->state); if (cc == client_current()) client_none(cc->sc); @@ -467,7 +467,7 @@ client_unhide(struct client_ctx *cc) cc->flags &= ~CLIENT_HIDDEN; cc->state = NormalState; - xu_setstate(cc->win, cc->state); + xu_set_wm_state(cc->win, cc->state); client_draw_border(cc); } |