_fill functions are no longer needed. Nuke them.

This commit is contained in:
Nicholas Marriott
2009-03-28 16:57:03 +00:00
parent abf170d6d0
commit 34dd72f008
3 changed files with 3 additions and 60 deletions

View File

@ -1,4 +1,4 @@
/* $Id: grid-view.c,v 1.9 2009-03-28 16:55:46 nicm Exp $ */
/* $Id: grid-view.c,v 1.10 2009-03-28 16:57:03 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@ -78,19 +78,6 @@ grid_view_clear(struct grid *gd, u_int px, u_int py, u_int nx, u_int ny)
grid_clear(gd, px, py, nx, ny);
}
/* Fill area. */
void
grid_view_fill(struct grid *gd, const struct grid_cell *gc,
uint64_t text, u_int px, u_int py, u_int nx, u_int ny)
{
GRID_DEBUG(gd, "px=%u, py=%u, nx=%u, ny=%u", px, py, nx, ny);
px = grid_view_x(gd, px);
py = grid_view_y(gd, py);
grid_fill(gd, gc, text, px, py, nx, ny);
}
/* Scroll region up. */
void
grid_view_scroll_region_up(struct grid *gd, u_int rupper, u_int rlower)