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/tqxmlreader.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'doc/html/tqxmlreader.html') diff --git a/doc/html/tqxmlreader.html b/doc/html/tqxmlreader.html index b6cf070fa..57107192e 100644 --- a/doc/html/tqxmlreader.html +++ b/doc/html/tqxmlreader.html @@ -135,22 +135,22 @@ own subclasses with setEntityResolver(), If the reader has the feature called name, the feature's value is returned. If no such feature exists the return value is undefined. -

If ok is not 0: *ok is set to TRUE if the reader has the -feature called name; otherwise *ok is set to FALSE. +

If ok is not 0: *ok is set to true if the reader has the +feature called name; otherwise *ok is set to false.

See also setFeature() and hasFeature().

bool TQXmlReader::hasFeature ( const TQString & name ) const [pure virtual]

-

Returns TRUE if the reader has the feature called name; -otherwise returns FALSE. +

Returns true if the reader has the feature called name; +otherwise returns false.

See also feature() and setFeature().

bool TQXmlReader::hasProperty ( const TQString & name ) const [pure virtual]

-

Returns TRUE if the reader has the property name; otherwise -returns FALSE. +

Returns true if the reader has the property name; otherwise +returns false.

See also property() and setProperty().

TQXmlLexicalHandler * TQXmlReader::lexicalHandler () const [pure virtual] @@ -162,8 +162,8 @@ returns FALSE.

bool TQXmlReader::parse ( const TQXmlInputSource * input ) [pure virtual]

-

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

Reads an XML document from input and parses it. Returns true if +the parsing was successful; otherwise returns false.

Example: xml/tagreader/tagreader.cpp.

bool TQXmlReader::parse ( const TQXmlInputSource & input ) [pure virtual] @@ -177,7 +177,7 @@ the parsing was successful; otherwise returns FALSE.

If the reader has the property name, this function returns the value of the property; otherwise the return value is undefined.

If ok is not 0: if the reader has the name property *ok -is set to TRUE; otherwise *ok is set to FALSE. +is set to true; otherwise *ok is set to false.

See also setProperty() and hasProperty().

void TQXmlReader::setContentHandler ( TQXmlContentHandler * handler ) [pure virtual] -- cgit v1.2.3