mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
Remove screen_infomsg(), nothing uses it.
ok okan.
This commit is contained in:
16
client.c
16
client.c
@ -610,7 +610,7 @@ client_cyclenext(int reverse)
|
||||
|
||||
/* TODO: maybe this should just be a CIRCLEQ. */
|
||||
|
||||
if (!(cc = _curcc)) {
|
||||
if ((cc = client_current()) == NULL) {
|
||||
if (TAILQ_EMPTY(&Clientq))
|
||||
return(NULL);
|
||||
cc = TAILQ_FIRST(&Clientq);
|
||||
@ -675,20 +675,6 @@ client__cycle(struct client_ctx *cc,
|
||||
return (cc != save ? cc : NULL);
|
||||
}
|
||||
|
||||
void
|
||||
client_altrelease()
|
||||
{
|
||||
struct client_ctx *cc = _curcc;
|
||||
struct screen_ctx *sc;
|
||||
|
||||
if (cc == NULL)
|
||||
return;
|
||||
sc = CCTOSC(cc);
|
||||
|
||||
XUnmapWindow(X_Dpy, sc->infowin);
|
||||
XReparentWindow(X_Dpy, sc->infowin, sc->rootwin, 0, 0);
|
||||
}
|
||||
|
||||
void
|
||||
client_placecalc(struct client_ctx *cc)
|
||||
{
|
||||
|
Reference in New Issue
Block a user