summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu.herrb@laas.fr>2004-10-03 20:08:42 +0000
committerMatthieu Herrb <matthieu.herrb@laas.fr>2004-10-03 20:08:42 +0000
commit054445f4238a98b7ea7910778ed110f5eff9d4f2 (patch)
treedbe4adb589b006e08c5dc6ab96ddae4236af3eb7
parent045e3de107523f28e765da8239d6afa9f51d6ba2 (diff)
downloadxorg-lib-libXt-054445f4238a98b7ea7910778ed110f5eff9d4f2.tar.gz
Xt Manual pages fixes from Dmitry Bolkhovitanov (Bugzilla #1498, $1499).
-rw-r--r--man/XtManageChildren.man20
-rw-r--r--man/XtName.man2
2 files changed, 11 insertions, 11 deletions
diff --git a/man/XtManageChildren.man b/man/XtManageChildren.man
index 9d8e3ca..c7aac98 100644
--- a/man/XtManageChildren.man
+++ b/man/XtManageChildren.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.4 2004/05/08 12:05:07 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
diff --git a/man/XtName.man b/man/XtName.man
index 42d28c3..d501bc1 100644
--- a/man/XtName.man
+++ b/man/XtName.man
@@ -131,7 +131,7 @@
XtName \- obtain widget's name
.SH SYNTAX
.HP
-Widget XtName(Widget \fIw\fP);
+String XtName(Widget \fIw\fP);
.SH ARGUMENTS
.IP \fIw\fP 1i
Specifies the widget.