From 283f71d0f500541b6273316120e252b03f22fb03 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Mon, 22 May 2006 00:20:48 +0000 Subject: Add a signals architecture to allow callbacks on GUI events. Make all widget classes initialise widgets by calling TXT_InitWidget. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 501 --- textscreen/txt_table.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'textscreen/txt_table.c') diff --git a/textscreen/txt_table.c b/textscreen/txt_table.c index 5ae9ee62..4e2d1f96 100644 --- a/textscreen/txt_table.c +++ b/textscreen/txt_table.c @@ -408,12 +408,10 @@ txt_widget_class_t txt_table_class = void TXT_InitTable(txt_table_t *table, int columns) { + TXT_InitWidget(table, &txt_table_class); table->columns = columns; table->widgets = NULL; table->num_widgets = 0; - table->widget.widget_class = &txt_table_class; - table->widget.visible = 1; - table->widget.selectable = 1; table->selected_x = 0; table->selected_y = 0; } -- cgit v1.2.3