Name
XtRemoveAllCallbacks — delete all procedures from a callback list.
Synopsis
void XtRemoveAllCallbacks(object, callback_name)
Widget object;
String callback_name;
Arguments
objectSpecifies the object whose callbacks are to be deleted; may be of class Object or any subclass thereof.
callback_name
Specifies the callback list to be removed.
Description
XtRemoveAllCallbacks removes all the widget’s callback procedures identified by callback_name, regardless of the value of the client_data associated with each procedure. This is in contrast to XtRemoveCallback and XtRemoveCallbacks, which remove the specified callback only if a specified client_data argument also matches.
Calling any of these routines implicitly frees storage associated with the Intrinsics’ internal representation of the callback list.
See Also
XtAddCallbacks(1), XtCallCallbacks(1), XtRemoveCallback(1), XtRemoveCallbacks(1).