From 4d495175043c399fdca6e1bb4c74ef176fc76fb4 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 6 Aug 2025 11:29:57 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 4 Signed-off-by: Michele Calgaro --- doc/html/tqxmlcontenthandler.html | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'doc/html/tqxmlcontenthandler.html') diff --git a/doc/html/tqxmlcontenthandler.html b/doc/html/tqxmlcontenthandler.html index bbf54f193..70ff0bfec 100644 --- a/doc/html/tqxmlcontenthandler.html +++ b/doc/html/tqxmlcontenthandler.html @@ -103,7 +103,7 @@ two types you must use TQXmlLexica

A reader may report the character data of an element in more than one chunk; e.g. a reader might want to report "a<b" in three characters() events ("a ", "<" and " b"). -

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. @@ -114,7 +114,7 @@ get the error message. is called just once, and is the last handler function called. It is called after the reader has read all input or has abandoned parsing because of a fatal error. -

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.

See also startDocument(). @@ -125,7 +125,7 @@ get the error message.

The reader calls this function when it has parsed an end element tag with the qualified name qName, the local name localName and the namespace URI namespaceURI. -

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.

See also the namespace description. @@ -137,7 +137,7 @@ get the error message.

The reader calls this function to signal the end of a prefix mapping for the prefix prefix. -

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.

See also the namespace description. @@ -147,14 +147,14 @@ get the error message.

The reader calls this function to get an error string, e.g. if any -of the handler functions returns FALSE. +of the handler functions returns false.

bool TQXmlContentHandler::ignorableWhitespace ( const TQString & ch ) [pure virtual]

Some readers may use this function to report each chunk of whitespace in element content. The whitespace is reported in ch. -

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. @@ -164,7 +164,7 @@ get the error message.

The reader calls this function when it has parsed a processing instruction.

target is the target name of the processing instruction and data is the data in the processing instruction. -

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. @@ -186,7 +186,7 @@ destroyed). declarations (e.g. because they are in an external DTD). If they do so they report that they skipped the entity called name by calling this function. -

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. @@ -197,7 +197,7 @@ get the error message. document. The reader calls this function just once, after the call to setDocumentLocator(), and before any other functions in this class or in the TQXmlDTDHandler class are called. -

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.

See also endDocument(). @@ -216,7 +216,7 @@ endElement() call.

The attribute list provided only contains attributes with explicit values. The attribute list contains attributes used for namespace declaration (i.e. attributes starting with xmlns) only if the -namespace-prefix property of the reader is TRUE. +namespace-prefix property of the reader is true.

The argument namespaceURI is the namespace URI, or TQString::null if the element has no namespace URI or if no namespace processing is done. localName is the local name @@ -224,7 +224,7 @@ namespace processing is done. localName is the local name done, qName is the qualified name (with prefix) and atts are the attributes attached to the element. If there are no attributes, atts is an empty attributes object. -

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.

See also the namespace description. @@ -246,7 +246,7 @@ after the corresponding endElement() event, but their otherwise guaranteed.

The argument prefix is the namespace prefix being declared and the argument uri is the namespace URI the prefix is mapped to. -

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.

See also the namespace description. -- cgit v1.2.3