summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqxmllexicalhandler.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/tqxmllexicalhandler.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/tqxmllexicalhandler.3qt')
-rw-r--r--doc/man/man3/tqxmllexicalhandler.3qt16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/man/man3/tqxmllexicalhandler.3qt b/doc/man/man3/tqxmllexicalhandler.3qt
index 888126ff6..cb8330d21 100644
--- a/doc/man/man3/tqxmllexicalhandler.3qt
+++ b/doc/man/man3/tqxmllexicalhandler.3qt
@@ -60,17 +60,17 @@ See also TQXmlDTDHandler, TQXmlDeclHandler, TQXmlContentHandler, TQXmlEntityReso
.SH "bool TQXmlLexicalHandler::comment ( const TQString & ch )\fC [pure virtual]\fR"
The reader calls this function to report an XML comment anywhere in the document. It reports the text of the comment in \fIch\fR.
.PP
-If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
+If this function returns false the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
.SH "bool TQXmlLexicalHandler::endCDATA ()\fC [pure virtual]\fR"
The reader calls this function to report the end of a CDATA section.
.PP
-If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
+If this function returns false the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
.PP
See also startCDATA() and TQXmlContentHandler::characters().
.SH "bool TQXmlLexicalHandler::endDTD ()\fC [pure virtual]\fR"
The reader calls this function to report the end of a DTD declaration, if any.
.PP
-If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
+If this function returns false the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
.PP
See also startDTD().
.SH "bool TQXmlLexicalHandler::endEntity ( const TQString & name )\fC [pure virtual]\fR"
@@ -78,15 +78,15 @@ The reader calls this function to report the end of an entity called \fIname\fR.
.PP
For every startEntity() call, there is a corresponding endEntity() call. The calls to startEntity() and endEntity() are properly nested.
.PP
-If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
+If this function returns false the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
.PP
See also startEntity(), TQXmlContentHandler::skippedEntity(), and TQXmlSimpleReader::setFeature().
.SH "TQString TQXmlLexicalHandler::errorString ()\fC [pure virtual]\fR"
-The reader calls this function to get an error string if any of the handler functions returns FALSE.
+The reader calls this function to get an error string if any of the handler functions returns false.
.SH "bool TQXmlLexicalHandler::startCDATA ()\fC [pure virtual]\fR"
The reader calls this function to report the start of a CDATA section. The content of the CDATA section is reported through the TQXmlContentHandler::characters() function. This function is intended only to report the boundary.
.PP
-If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
+If this function returns false the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
.PP
See also endCDATA().
.SH "bool TQXmlLexicalHandler::startDTD ( const TQString & name, const TQString & publicId, const TQString & systemId )\fC [pure virtual]\fR"
@@ -96,7 +96,7 @@ If the public identifier is missing, \fIpublicId\fR is set to TQString::null. If
.PP
All declarations reported through TQXmlDTDHandler or TQXmlDeclHandler appear between the startDTD() and endDTD() calls.
.PP
-If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
+If this function returns false the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
.PP
See also endDTD().
.SH "bool TQXmlLexicalHandler::startEntity ( const TQString & name )\fC [pure virtual]\fR"
@@ -104,7 +104,7 @@ The reader calls this function to report the start of an entity called \fIname\f
.PP
Note that if the entity is unknown, the reader reports it through TQXmlContentHandler::skippedEntity() and not through this function.
.PP
-If this function returns FALSE the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
+If this function returns false the reader stops parsing and reports an error. The reader uses the function errorString() to get the error message.
.PP
See also endEntity() and TQXmlSimpleReader::setFeature().