diff options
author | okan | 2012-12-17 14:26:29 +0000 |
---|---|---|
committer | okan | 2012-12-17 14:26:29 +0000 |
commit | 43033f15ed112e90c2a62d9facdbfbf1ad5b61ee (patch) | |
tree | c9a131025422c505805b967d6e6a9b3591d72004 /client.c | |
parent | d8f54bb5b06ab7f1db3b1871e2efa13b9212657f (diff) | |
download | cwm-43033f15ed112e90c2a62d9facdbfbf1ad5b61ee.tar.gz |
current_client() returns _curcc, so use it where appropriate
Diffstat (limited to '')
-rw-r--r-- | client.c | 14 |
1 files changed, 7 insertions, 7 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: client.c,v 1.103 2012/11/09 03:52:02 okan Exp $ + * $OpenBSD: client.c,v 1.104 2012/12/17 14:26:29 okan Exp $ */ #include <sys/param.h> @@ -158,7 +158,7 @@ client_delete(struct client_ctx *cc) xu_ewmh_net_client_list(sc); - if (_curcc == cc) + if (cc == client_current()) client_none(sc); XFree(cc->size); @@ -180,7 +180,7 @@ client_leave(struct client_ctx *cc) struct screen_ctx *sc; if (cc == NULL) - cc = _curcc; + cc = client_current(); if (cc == NULL) return; @@ -194,7 +194,7 @@ client_setactive(struct client_ctx *cc, int fg) struct screen_ctx *sc; if (cc == NULL) - cc = _curcc; + cc = client_current(); if (cc == NULL) return; @@ -214,7 +214,7 @@ client_setactive(struct client_ctx *cc, int fg) } else client_leave(cc); - if (fg && _curcc != cc) { + if (fg && cc != client_current()) { client_setactive(NULL, 0); _curcc = cc; xu_ewmh_net_active_window(sc, cc->win); @@ -480,7 +480,7 @@ client_hide(struct client_ctx *cc) cc->flags |= CLIENT_HIDDEN; xu_setstate(cc, IconicState); - if (cc == _curcc) + if (cc == client_current()) client_none(cc->sc); } @@ -737,7 +737,7 @@ client_mtf(struct client_ctx *cc) struct screen_ctx *sc; if (cc == NULL) - cc = _curcc; + cc = client_current(); if (cc == NULL) return; |