mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
rename for clarity
This commit is contained in:
parent
46b1d6ef1e
commit
8420398068
8
client.c
8
client.c
@ -40,7 +40,7 @@ static void client_wm_protocols(struct client_ctx *);
|
||||
static void client_mwm_hints(struct client_ctx *);
|
||||
static int client_inbound(struct client_ctx *, int, int);
|
||||
|
||||
struct client_ctx *_curcc = NULL;
|
||||
struct client_ctx *curcc = NULL;
|
||||
|
||||
struct client_ctx *
|
||||
client_find(Window win)
|
||||
@ -192,7 +192,7 @@ client_setactive(struct client_ctx *cc)
|
||||
if (!sc->cycling)
|
||||
client_mtf(cc);
|
||||
|
||||
_curcc = cc;
|
||||
curcc = cc;
|
||||
cc->active = 1;
|
||||
cc->flags &= ~CLIENT_URGENCY;
|
||||
client_draw_border(cc);
|
||||
@ -210,13 +210,13 @@ client_none(struct screen_ctx *sc)
|
||||
|
||||
xu_ewmh_net_active_window(sc, none);
|
||||
|
||||
_curcc = NULL;
|
||||
curcc = NULL;
|
||||
}
|
||||
|
||||
struct client_ctx *
|
||||
client_current(void)
|
||||
{
|
||||
return (_curcc);
|
||||
return (curcc);
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
Reference in New Issue
Block a user