1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00

Add missing internal object functions, hard-coded for ncurses for now.

This commit is contained in:
Paul Richards 1995-09-13 18:04:35 +00:00
parent b6e3d50f4c
commit d189bfa4d3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=10715

View File

@ -371,3 +371,21 @@ add_menu_option(MENU_OBJECT *menu, char *option)
return (++menu->no_options);
}
/* Default object functions */
void
draw_box(OBJECT *object)
{
/* Gross hack for now */
ncurses_draw_box(object);
}
void
draw_shadow(OBJECT *object)
{
/* Gross hack for now */
ncurses_draw_shadow(object);
}