mirror of
https://github.com/leahneukirchen/cwm.git
synced 2023-08-10 21:13:12 +03:00
Kill draw.c, nothing uses the code in it.
More dead code removals to come. ok marc@
This commit is contained in:
parent
f82afee4e2
commit
847191cff3
2
Makefile
2
Makefile
@ -6,7 +6,7 @@ X11BASE?= /usr/X11R6
|
||||
|
||||
PROG= cwm
|
||||
|
||||
SRCS= calmwm.c draw.c screen.c xmalloc.c client.c grab.c search.c \
|
||||
SRCS= calmwm.c screen.c xmalloc.c client.c grab.c search.c \
|
||||
util.c xutil.c conf.c input.c xevents.c group.c \
|
||||
kbfunc.c cursor.c font.c
|
||||
|
||||
|
2
calmwm.h
2
calmwm.h
@ -446,8 +446,6 @@ void kbfunc_ssh(struct client_ctx *, void *);
|
||||
void kbfunc_term(struct client_ctx *cc, void *arg);
|
||||
void kbfunc_lock(struct client_ctx *cc, void *arg);
|
||||
|
||||
void draw_outline(struct client_ctx *);
|
||||
|
||||
void search_init(struct screen_ctx *);
|
||||
struct menu *search_start(struct menu_q *menuq,
|
||||
void (*match)(struct menu_q *, struct menu_q *, char *),
|
||||
|
21
draw.c
21
draw.c
@ -1,21 +0,0 @@
|
||||
/*
|
||||
* calmwm - the calm window manager
|
||||
*
|
||||
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
|
||||
* All rights reserved.
|
||||
*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#include "headers.h"
|
||||
#include "calmwm.h"
|
||||
|
||||
void
|
||||
draw_outline(struct client_ctx *cc)
|
||||
{
|
||||
struct screen_ctx *sc = CCTOSC(cc);
|
||||
|
||||
XDrawRectangle(X_Dpy, sc->rootwin, sc->invgc,
|
||||
cc->geom.x - cc->bwidth, cc->geom.y - cc->bwidth,
|
||||
cc->geom.width + cc->bwidth, cc->geom.height + cc->bwidth);
|
||||
}
|
Loading…
Reference in New Issue
Block a user