Rename some functions.

This commit is contained in:
Nicholas Marriott
2008-09-10 19:15:06 +00:00
parent ded348064a
commit f07cedf048
8 changed files with 38 additions and 38 deletions

View File

@ -1,4 +1,4 @@
/* $Id: window.c,v 1.48 2008-07-01 20:35:16 nicm Exp $ */
/* $Id: window.c,v 1.49 2008-09-10 19:15:06 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -182,7 +182,7 @@ window_create(const char *name,
w->flags = 0;
w->limitx = w->limity = UINT_MAX;
screen_create(&w->base, sx, sy, hlimit);
screen_init(&w->base, sx, sy, hlimit);
w->screen = &w->base;
input_init(w);
@ -282,7 +282,7 @@ window_destroy(struct window *w)
input_free(w);
window_reset_mode(w);
screen_destroy(&w->base);
screen_free(&w->base);
buffer_destroy(w->in);
buffer_destroy(w->out);