diff options
Diffstat (limited to 'man/XQueryTree.man')
-rw-r--r-- | man/XQueryTree.man | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/man/XQueryTree.man b/man/XQueryTree.man index 210b33c0..63a05516 100644 --- a/man/XQueryTree.man +++ b/man/XQueryTree.man @@ -39,7 +39,7 @@ .\" Digital and Tektronix makes no representations about the suitability .\" of this documentation for any purpose. .\" It is provided "as is" without express or implied warranty. -.\" +.\" .\" .ds xT X Toolkit Intrinsics \- C Language Interface .ds xW Athena X Widgets \- C Language X Toolkit Interface @@ -52,7 +52,7 @@ XQueryTree \- query window tree information .HP Status XQueryTree\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, Window *\fIroot_return\fP\^, Window *\fIparent_return\fP\^, Window -**\fIchildren_return\fP\^, unsigned int *\fInchildren_return\fP\^); +**\fIchildren_return\fP\^, unsigned int *\fInchildren_return\fP\^); .SH ARGUMENTS .IP \fIchildren_return\fP 1i Returns the list of children. @@ -65,20 +65,20 @@ Returns the parent window. .IP \fIroot_return\fP 1i Returns the root window. .IP \fIw\fP 1i -Specifies the window whose list of children, root, parent, and number of children +Specifies the window whose list of children, root, parent, and number of children you want to obtain. .SH DESCRIPTION The .B XQueryTree -function returns the root ID, the parent window ID, +function returns the root ID, the parent window ID, a pointer to the list of children windows -(NULL when there are no children), +(NULL when there are no children), and the number of children in the list for the specified window. -The children are listed in current stacking order, from bottom-most +The children are listed in current stacking order, from bottom-most (first) to top-most (last). .B XQueryTree returns zero if it fails and nonzero if it succeeds. -To free a non-NULL children list when it is no longer needed, use +To free a non-NULL children list when it is no longer needed, use .BR XFree . .LP .B XQueryTree |