summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqxmlerrorhandler.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/tqxmlerrorhandler.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/tqxmlerrorhandler.3qt')
-rw-r--r--doc/man/man3/tqxmlerrorhandler.3qt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/man3/tqxmlerrorhandler.3qt b/doc/man/man3/tqxmlerrorhandler.3qt
index 15f4cc73d..3d4c65f33 100644
--- a/doc/man/man3/tqxmlerrorhandler.3qt
+++ b/doc/man/man3/tqxmlerrorhandler.3qt
@@ -48,17 +48,17 @@ A reader might use this function to report a recoverable error. A recoverable er
.PP
The reader must continue to provide normal parsing events after invoking 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.
.SH "TQString TQXmlErrorHandler::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 TQXmlErrorHandler::fatalError ( const TQXmlParseException & exception )\fC [pure virtual]\fR"
A reader must use this function to report a non-recoverable error. Details of the error are stored in \fIexception\fR.
.PP
-If this function returns TRUE the reader might try to go on parsing and reporting further errors; but no regular parsing events are reported.
+If this function returns true the reader might try to go on parsing and reporting further errors; but no regular parsing events are reported.
.SH "bool TQXmlErrorHandler::warning ( const TQXmlParseException & exception )\fC [pure virtual]\fR"
A reader might use this function to report a warning. Warnings are conditions that are not errors or fatal errors as defined by the XML 1.0 specification. Details of the warning are stored in \fIexception\fR.
.PP
-If this function returns FALSE the reader stops parsing and
+If this function returns false the reader stops parsing and
reports an error. The reader uses the function errorString() to
get the error message.