diff options
author | herrb <herrb> | 2004-05-08 12:05:07 +0000 |
---|---|---|
committer | herrb <herrb> | 2004-05-08 12:05:07 +0000 |
commit | 85661cb6e2d092feda4a62fb24dd1c821a5eab46 (patch) | |
tree | 00bbd0883b3ed26f6ef716349000a7ef61e7a987 /doc | |
parent | 862be01e087b13a312894a1855602e7803140be2 (diff) |
Fix XtChangeManagedSet() parameter list order.
(Bugzilla #1363, Dmitry Bolkhovityanov).
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/Xt/XtManChild.man | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/man/Xt/XtManChild.man b/doc/man/Xt/XtManChild.man index 9d8e3ca7f..7393e4841 100644 --- a/doc/man/Xt/XtManChild.man +++ b/doc/man/Xt/XtManChild.man @@ -26,7 +26,7 @@ .\" other dealings in this Software without prior written authorization .\" from the X Consortium. .\" -.\" $XFree86: xc/doc/man/Xt/XtManChild.man,v 1.2 2001/01/27 18:20:28 dawes Exp $ +.\" $XFree86: xc/doc/man/Xt/XtManChild.man,v 1.3 2003/04/28 22:18:19 herrb Exp $ .\" .ds tk X Toolkit .ds xT X Toolkit Intrinsics \- C Language Interface @@ -142,10 +142,10 @@ void XtUnmanageChildren(WidgetList \fIchildren\fP, Cardinal .HP void XtUnmanageChild(Widget \fIchild\fP); .HP -void XtChangeManagedSet(WidgetList \fIunmanage_children\fP, Cardinal -\fInum_unmanage_children\fP, WidgetList \fImanage_children\fP, Cardinal -\fInum_manage_children\fP, XtCSMProc \fIpost_unmanage_pre_manage_hook\fP, -XtPointer \fIclient_data\fP); +void XtChangeManagedSet(WidgetList \fIunmanage_children\fP, +Cardinal \fInum_unmanage_children\fP, XtDoChangeProc \fIdo_change_proc\fP, +XtPointer \fIclient_data\fP, WidgetList \fImanage_children\fP, +Cardinal \fInum_manage_children\fP); .HP Boolean XtIsManaged(Widget \fIwidget\fP); .SH ARGUMENTS @@ -165,7 +165,7 @@ Specifies the number of entries in the manage_children list. Specifies the list of widget children to remove from the managed set. .IP \fInum_unmanage_children\fP 1i Specifies the number of entries in the unmanage_children list. -.IP \fIpost_unmanage_pre_manage_hook\fP 1i +.IP \fIdo_change_proc\fP 1i Specifies the post unmanage, pre manage hook procedure to invoke. .IP \fIclient_data\fP 1i Specifies the client data to be passed to the hook precedure. @@ -280,7 +280,7 @@ value of .ZN False , and .ZN XtChangeManagedSet -was invoked with a non-NULL \fIpost_unmanage_pre_manage_hook\fP procedure +was invoked with a non-NULL \fIdo_change_proc\fP procedure then .ZN XtChangeManagedSet performs the following: @@ -290,7 +290,7 @@ Calls .ZN XtUnmanageChildren (\fIunmanage_children\fP, \fInum_unmanage_children\fP). .IP \- 5 -Calls the \fIpost_unmanage_pre_manage_hook\fP specified. +Calls the \fIdo_change_proc\fP specified. .IP \- 5 Calls .ZN XtManageChildren @@ -306,7 +306,7 @@ or if no .ZN CompositeClassExtension is defined, and .ZN XtChangeManagedSet was invoked with a NULL -\fIpost_unmanage_pre_manage_hook\fP procedure, then the following is +\fIdo_change_proc\fP procedure, then the following is performed: .RS .IP \- 5 @@ -315,7 +315,7 @@ already unmanaged or is being destroyed it is ignored, otherwise it is marked as being unmanaged and if it is realized it is made nonvisible by being unmapped. .IP \- 5 -If the \fIpost_unmanage_pre_manage_hook\fP procdedure is non-NULL then +If the \fIdo_change_proc\fP procdedure is non-NULL then it is invoked as specified. .IP \- 5 For each child on the \fImanage_children\fP list; if the child is |