Kill draw.c, nothing uses the code in it.

More dead code removals to come.

ok marc@
This commit is contained in:
oga 2008-01-03 01:58:16 +00:00
parent 52cb71d16c
commit ee4e50a6e2
3 changed files with 3 additions and 26 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.2 2008/01/02 20:47:11 marc Exp $
# $OpenBSD: Makefile,v 1.3 2008/01/03 01:58:16 oga Exp $
.include <bsd.own.mk>
@ -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

View File

@ -4,7 +4,7 @@
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
* All rights reserved.
*
* $Id: calmwm.h,v 1.14 2008/01/02 20:54:32 marc Exp $
* $Id: calmwm.h,v 1.15 2008/01/03 01:58:16 oga Exp $
*/
#ifndef _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 *),

View File

@ -1,21 +0,0 @@
/*
* calmwm - the calm window manager
*
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
* All rights reserved.
*
* $Id: draw.c,v 1.2 2007/05/28 18:34:27 jasper Exp $
*/
#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);
}