summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqxmlreader.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-26 11:44:58 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-30 14:26:34 +0900
commit6dd781c483eea56f51ae0eff47d857976b5d0f0d (patch)
tree0ddd4408e142ae6f8b13d3538359abd127988b2f /doc/man/man3/tqxmlreader.3qt
parentff56b6fec14de4cd4b89d5b322531671d200b6e0 (diff)
downloadtqt-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/tqxmlreader.3qt')
-rw-r--r--doc/man/man3/tqxmlreader.3qt10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/man3/tqxmlreader.3qt b/doc/man/man3/tqxmlreader.3qt
index f9978f27e..6cb017dbb 100644
--- a/doc/man/man3/tqxmlreader.3qt
+++ b/doc/man/man3/tqxmlreader.3qt
@@ -116,15 +116,15 @@ See also setErrorHandler().
.SH "bool TQXmlReader::feature ( const TQString & name, bool * ok = 0 ) const\fC [pure virtual]\fR"
If the reader has the feature called \fIname\fR, the feature's value is returned. If no such feature exists the return value is undefined.
.PP
-If \fIok\fR is not 0: \fI*ok\fR is set to TRUE if the reader has the feature called \fIname\fR; otherwise \fI*ok\fR is set to FALSE.
+If \fIok\fR is not 0: \fI*ok\fR is set to true if the reader has the feature called \fIname\fR; otherwise \fI*ok\fR is set to false.
.PP
See also setFeature() and hasFeature().
.SH "bool TQXmlReader::hasFeature ( const TQString & name ) const\fC [pure virtual]\fR"
-Returns \fCTRUE\fR if the reader has the feature called \fIname\fR; otherwise returns FALSE.
+Returns \fCTRUE\fR if the reader has the feature called \fIname\fR; otherwise returns false.
.PP
See also feature() and setFeature().
.SH "bool TQXmlReader::hasProperty ( const TQString & name ) const\fC [pure virtual]\fR"
-Returns TRUE if the reader has the property \fIname\fR; otherwise returns FALSE.
+Returns true if the reader has the property \fIname\fR; otherwise returns false.
.PP
See also property() and setProperty().
.SH "TQXmlLexicalHandler * TQXmlReader::lexicalHandler () const\fC [pure virtual]\fR"
@@ -132,7 +132,7 @@ Returns the lexical handler or 0 if none was set.
.PP
See also setLexicalHandler().
.SH "bool TQXmlReader::parse ( const TQXmlInputSource * input )\fC [pure virtual]\fR"
-Reads an XML document from \fIinput\fR and parses it. Returns TRUE if the parsing was successful; otherwise returns FALSE.
+Reads an XML document from \fIinput\fR and parses it. Returns true if the parsing was successful; otherwise returns false.
.PP
Example: xml/tagreader/tagreader.cpp.
.SH "bool TQXmlReader::parse ( const TQXmlInputSource & input )\fC [pure virtual]\fR"
@@ -140,7 +140,7 @@ Example: xml/tagreader/tagreader.cpp.
.SH "void * TQXmlReader::property ( const TQString & name, bool * ok = 0 ) const\fC [pure virtual]\fR"
If the reader has the property \fIname\fR, this function returns the value of the property; otherwise the return value is undefined.
.PP
-If \fIok\fR is not 0: if the reader has the \fIname\fR property \fI*ok\fR is set to TRUE; otherwise \fI*ok\fR is set to FALSE.
+If \fIok\fR is not 0: if the reader has the \fIname\fR property \fI*ok\fR is set to true; otherwise \fI*ok\fR is set to false.
.PP
See also setProperty() and hasProperty().
.SH "void TQXmlReader::setContentHandler ( TQXmlContentHandler * handler )\fC [pure virtual]\fR"