diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-26 11:44:58 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-30 14:26:34 +0900 |
commit | 6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch) | |
tree | 0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tqaccessibleinterface.3qt | |
parent | ff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff) | |
download | tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.tar.gz tqt-6dd781c483eea56f51ae0eff47d857976b5d0f0d.zip |
Replace TRUE/FALSE with boolean values true/false - part 3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqaccessibleinterface.3qt')
-rw-r--r-- | doc/man/man3/tqaccessibleinterface.3qt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/man3/tqaccessibleinterface.3qt b/doc/man/man3/tqaccessibleinterface.3qt index b5e5c71d5..c218bb38c 100644 --- a/doc/man/man3/tqaccessibleinterface.3qt +++ b/doc/man/man3/tqaccessibleinterface.3qt @@ -88,7 +88,7 @@ All visual objects provide this information. .SH "bool TQAccessibleInterface::doDefaultAction ( int control )\fC [pure virtual]\fR" Calling this function performs the default action of the child object specified by \fIcontrol\fR, or the default action of the object itself if \fIcontrol\fR is 0. .SH "bool TQAccessibleInterface::isValid () const\fC [pure virtual]\fR" -Returns TRUE if all the data necessary to use this interface implementation is valid (e.g. all pointers are non-null), otherwise returns FALSE. +Returns true if all the data necessary to use this interface implementation is valid (e.g. all pointers are non-null), otherwise returns false. .SH "int TQAccessibleInterface::navigate ( NavDirection direction, int startControl ) const\fC [pure virtual]\fR" This function traverses to another object, or to a sub-element of the current object. \fIdirection\fR specifies in which direction to navigate, and \fIstartControl\fR specifies the start point of the navigation, which is either 0 if the navigation starts at the object itself, or an ID of one of the object's sub-elements. .PP @@ -122,11 +122,11 @@ See also text(), role(), and state(). .SH "bool TQAccessibleInterface::setFocus ( int control )\fC [pure virtual]\fR" Gives the focus to the child object specified by \fIcontrol\fR, or to the object itself if \fIcontrol\fR is 0. .PP -Returns TRUE if the focus could be set; otherwise returns FALSE. +Returns true if the focus could be set; otherwise returns false. .SH "bool TQAccessibleInterface::setSelected ( int control, bool on, bool extend )\fC [pure virtual]\fR" -Sets the selection of the child object with ID \fIcontrol\fR to \fIon\fR. If \fIextend\fR is TRUE, all child elements between the focused item and the specified child object have their selection set to \fIon\fR. +Sets the selection of the child object with ID \fIcontrol\fR to \fIon\fR. If \fIextend\fR is true, all child elements between the focused item and the specified child object have their selection set to \fIon\fR. .PP -Returns TRUE if the selection could be set; otherwise returns FALSE. +Returns true if the selection could be set; otherwise returns false. .PP See also setFocus() and clearSelection(). .SH "void TQAccessibleInterface::setText ( Text t, int control, const TQString & text )\fC [pure virtual]\fR" |