Provide ISO C arglists for functions
with Boolean args.
This commit is contained in:
parent
f4df536d0a
commit
207c13a78f
2 changed files with 14 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2002-11-21 Dave Love <fx@gnu.org>
|
||||||
|
|
||||||
|
* lwlib-Xaw.c [PROTOTYPES]: Provide ISO C arglists for functions
|
||||||
|
with Boolean args.
|
||||||
|
|
||||||
2002-11-20 Dave Love <fx@gnu.org>
|
2002-11-20 Dave Love <fx@gnu.org>
|
||||||
|
|
||||||
* lwlib.c: Remove obsolete USE_OLIT code.
|
* lwlib.c: Remove obsolete USE_OLIT code.
|
||||||
|
|
|
@ -119,11 +119,16 @@ xaw_update_scrollbar (instance, widget, val)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void
|
void
|
||||||
|
#ifdef PROTOTYPES
|
||||||
|
xaw_update_one_widget (widget_instance *instance, Widget widget,
|
||||||
|
widget_value *val, Boolean deep_p)
|
||||||
|
#else
|
||||||
xaw_update_one_widget (instance, widget, val, deep_p)
|
xaw_update_one_widget (instance, widget, val, deep_p)
|
||||||
widget_instance *instance;
|
widget_instance *instance;
|
||||||
Widget widget;
|
Widget widget;
|
||||||
widget_value *val;
|
widget_value *val;
|
||||||
Boolean deep_p;
|
Boolean deep_p;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
if (XtIsSubclass (widget, scrollbarWidgetClass))
|
if (XtIsSubclass (widget, scrollbarWidgetClass))
|
||||||
|
@ -198,9 +203,13 @@ xaw_popup_menu (widget, event)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
#ifdef PROTOTYPES
|
||||||
|
xaw_pop_instance (widget_instance *instance, Boolean up)
|
||||||
|
#else
|
||||||
xaw_pop_instance (instance, up)
|
xaw_pop_instance (instance, up)
|
||||||
widget_instance *instance;
|
widget_instance *instance;
|
||||||
Boolean up;
|
Boolean up;
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
Widget widget = instance->widget;
|
Widget widget = instance->widget;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue