Fix Inherit keyword

This commit is contained in:
Dave Davenport
2017-09-07 13:46:09 +02:00
parent 72f050e2fc
commit acfc07a63e
16 changed files with 62 additions and 64 deletions

View File

@@ -97,14 +97,15 @@ struct _widget
};
/**
* @param widget The widget to initialize.
* @param wid The widget to initialize.
* @param parent The widget's parent.
* @param type The type of the widget.
* @param name The name of the widget.
*
* Initializes the widget structure.
*
*/
void widget_init ( widget *widget, WidgetType type, const char *name );
void widget_init ( widget *wid, widget *parent, WidgetType type, const char *name );
/**
* @param widget The widget handle.