Mercurial > emacs
changeset 11862:10a973a88e87
(activate_button, xm_update_cascadebutton): Don't use prototype.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sat, 20 May 1995 05:18:42 +0000 |
parents | 5bb6ba042015 |
children | 18e97591e9bd |
files | lwlib/lwlib-Xm.c |
diffstat | 1 files changed, 8 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lwlib/lwlib-Xm.c Sat May 20 05:15:49 1995 +0000 +++ b/lwlib/lwlib-Xm.c Sat May 20 05:18:42 1995 +0000 @@ -257,8 +257,10 @@ } static void -xm_update_cascadebutton (widget_instance* instance, Widget widget, - widget_value* val) +xm_update_cascadebutton (instance, widget, val) + widget_instance* instance; + Widget widget; + widget_value* val; { /* Should also rebuild the menu by calling ...update_menu... */ XtRemoveAllCallbacks (widget, XmNcascadingCallback); @@ -728,7 +730,10 @@ I could not find a way to do that with accelerators. */ static void -activate_button (Widget widget, XtPointer closure, XtPointer call_data) +activate_button (widget, closure, call_data) + Widget widget; + XtPointer closure; + XtPointer call_data; { Widget button = (Widget)closure; XtCallCallbacks (button, XmNactivateCallback, NULL);