summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqxmldeclhandler.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqxmldeclhandler.3qt')
-rw-r--r--doc/man/man3/tqxmldeclhandler.3qt8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/man/man3/tqxmldeclhandler.3qt b/doc/man/man3/tqxmldeclhandler.3qt
index 719f78fc5..0de4eecf8 100644
--- a/doc/man/man3/tqxmldeclhandler.3qt
+++ b/doc/man/man3/tqxmldeclhandler.3qt
@@ -48,21 +48,21 @@ The reader calls this function to report an attribute type declaration. Only the
.PP
The reader passes the name of the associated element in \fIeName\fR and the name of the attribute in \fIaName\fR. It passes a string that represents the attribute type in \fItype\fR and a string that represents the attribute default in \fIvalueDefault\fR. This string is one of "#IMPLIED", "#REQUIRED", "#FIXED" or TQString::null (if none of the others applies). The reader passes the attribute's default value in \fIvalue\fR. If no default value is specified in the XML file, \fIvalue\fR is TQString::null.
.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 TQXmlDeclHandler::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 TQXmlDeclHandler::externalEntityDecl ( const TQString & name, const TQString & publicId, const TQString & systemId )\fC [pure virtual]\fR"
The reader calls this function to report a parsed external entity declaration. Only the effective (first) declaration for each entity is reported.
.PP
The reader passes the name of the entity in \fIname\fR, the public identifier in \fIpublicId\fR and the system identifier in \fIsystemId\fR. If there is no public identifier specified, it passes TQString::null in \fIpublicId\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 TQXmlDeclHandler::internalEntityDecl ( const TQString & name, const TQString & value )\fC [pure virtual]\fR"
The reader calls this function to report an internal entity declaration. Only the effective (first) declaration is reported.
.PP
The reader passes the name of the entity in \fIname\fR and the value of the entity in \fIvalue\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.