From: Karl Heuer Date: Sat, 20 May 1995 05:18:42 +0000 (+0000) Subject: (activate_button, xm_update_cascadebutton): Don't use prototype. X-Git-Tag: emacs-19.34~3996 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d111e5ab1214e78c6cc8501254eafc13c91cbbbe;p=emacs.git (activate_button, xm_update_cascadebutton): Don't use prototype. --- diff --git a/lwlib/lwlib-Xm.c b/lwlib/lwlib-Xm.c index 7924188494f..48730c501c2 100644 --- a/lwlib/lwlib-Xm.c +++ b/lwlib/lwlib-Xm.c @@ -257,8 +257,10 @@ xm_update_pushbutton (instance, widget, val) } 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 @@ xm_update_one_value (instance, widget, val) 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);