diff options
Diffstat (limited to 'engines/sci/gfx/gfx_widgets.h')
-rw-r--r-- | engines/sci/gfx/gfx_widgets.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/engines/sci/gfx/gfx_widgets.h b/engines/sci/gfx/gfx_widgets.h index 20e970fa99..509b2f947d 100644 --- a/engines/sci/gfx/gfx_widgets.h +++ b/engines/sci/gfx/gfx_widgets.h @@ -82,13 +82,10 @@ struct GfxWidget; /*********************************/ -#define GFXW(foo) (foo) -/* Typecast an arbitrary widget to GfxWidget*. Might eventually be changed to do tests as well. */ - #define GFXWC(foo) ((GfxContainer *) foo) /* Typecasts a container widget to gfxw_container_widget_t *. */ -/* gfxw_point_zero is declared in gfx/widgets.c */ +/* gfxw_point_zero is declared in gfx/widgets.cpp */ extern Common::Point gfxw_point_zero; /*********************/ @@ -110,15 +107,6 @@ extern Common::Point gfxw_point_zero; ** a container widget will recursively draw all of its contents. ** ** -** -- widfree(GfxWidget *self) -** Frees all memory associated to the widget -** Parameters: (GfxWidget *) self: self reference -** Returns : (int) 0 -** The widget automatically removes itself from its owner, if it has one. -** Invoking this operation on a container will recursively free all of its -** contents. -** -** ** -- tag(GfxWidget *self) ** Tags the specified widget ** Parameters: (GfxWidget *) self: self reference |