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/tqxmlsimplereader.html | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'doc/html/tqxmlsimplereader.html') diff --git a/doc/html/tqxmlsimplereader.html b/doc/html/tqxmlsimplereader.html index e67d3546b..987e1f16f 100644 --- a/doc/html/tqxmlsimplereader.html +++ b/doc/html/tqxmlsimplereader.html @@ -70,11 +70,11 @@ simple XML reader (parser). Constructs a simple XML reader with the following feature settings:
Feature Setting -
http://xml.org/sax/features/namespaces TRUE -
http://xml.org/sax/features/namespace-prefixes FALSE +
http://xml.org/sax/features/namespaces true +
http://xml.org/sax/features/namespace-prefixes false
http://trolltech.com/xml/features/report-whitespace-only-CharData -TRUE -
http://trolltech.com/xml/features/report-start-end-entity FALSE +true +
http://trolltech.com/xml/features/report-start-end-entity false

More information about features can be found in the TQt SAX2 overview.

See also setFeature(). @@ -85,9 +85,9 @@ Destroys the simple XML reader.

bool TQXmlSimpleReader::parse ( const TQXmlInputSource * input, bool incremental ) [virtual]

-Reads an XML document from input and parses it. Returns FALSE -if the parsing detects an error; otherwise returns TRUE. -

If incremental is TRUE, the parser does not return FALSE when +Reads an XML document from input and parses it. Returns false +if the parsing detects an error; otherwise returns true. +

If incremental is true, the parser does not return false when it reaches the end of the input without reaching the end of the XML file. Instead it stores the state of the parser so that parsing can be continued at a later stage when more data is @@ -96,10 +96,10 @@ with parsing. This class stores a pointer to the input source input and input souce. This means that you should not delete the input source input until you've finished your calls to parseContinue(). If you call this function with incremental -TRUE whilst an incremental parse is in progress a new parsing +true whilst an incremental parse is in progress a new parsing session will be started and the previous session lost. -

If incremental is FALSE, this function behaves like the normal -parse function, i.e. it returns FALSE when the end of input is +

If incremental is false, this function behaves like the normal +parse function, i.e. it returns false when the end of input is reached without reaching the end of the XML file and the parsing cannot be continued.

See also parseContinue() and TQSocket. @@ -110,8 +110,8 @@ cannot be continued. Continues incremental parsing; this function reads the input from the TQXmlInputSource that was specified with the last parse() command. To use this function, you must have called parse() -with the incremental argument set to TRUE. -

Returns FALSE if a parsing error occurs; otherwise returns TRUE. +with the incremental argument set to true. +

Returns false if a parsing error occurs; otherwise returns true.

If the input source returns an empty string for the function TQXmlInputSource::data(), then this means that the end of the XML file has been reached; this is quite important, especially if you @@ -123,7 +123,7 @@ when there is more data available to parse.

This function assumes that the end of the XML document is reached if the TQXmlInputSource::next() function returns TQXmlInputSource::EndOfDocument. If the parser has not finished -parsing when it encounters this symbol, it is an error and FALSE +parsing when it encounters this symbol, it is an error and false is returned.

See also parse() and TQXmlInputSource::next(). @@ -135,21 +135,21 @@ Sets the state of the feature name to value:

Feature Notes
http://xml.org/sax/features/namespaces -If this feature is TRUE, namespace processing is +If this feature is true, namespace processing is performed.
http://xml.org/sax/features/namespace-prefixes -If this feature is TRUE, the the original prefixed names +If this feature is true, the the original prefixed names and attributes used for namespace declarations are reported.
http://trolltech.com/xml/features/report-whitespace-only-CharData -If this feature is TRUE, CharData that only contain +If this feature is true, CharData that only contain whitespace are not ignored, but are reported via TQXmlContentHandler::characters().
http://trolltech.com/xml/features/report-start-end-entity -If this feature is TRUE, the parser reports +If this feature is true, the parser reports TQXmlContentHandler::startEntity() and TQXmlContentHandler::endEntity() events. So character data -might be reported in chunks. If this feature is FALSE, the +might be reported in chunks. If this feature is false, the parser does not report those events, but rather silently substitutes the entities and reports the character data in one chunk. @@ -158,7 +158,7 @@ one chunk.
    ** $Id: qt/tagreader.cpp   3.3.8   edited Jan 11 14:46 $
 
        reader.setFeature( "http://xml.org/sax/features/namespace-prefixes",
-                           TRUE );
+                           true );
 

(Code taken from xml/tagreader-with-features/tagreader.cpp)

See also feature() and hasFeature(). -- cgit v1.2.3