From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/tqxmlnamespacesupport.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'doc/html/tqxmlnamespacesupport.html') diff --git a/doc/html/tqxmlnamespacesupport.html b/doc/html/tqxmlnamespacesupport.html index 0d1aaa40a..d903ab85c 100644 --- a/doc/html/tqxmlnamespacesupport.html +++ b/doc/html/tqxmlnamespacesupport.html @@ -87,7 +87,7 @@ element. After popping the context, all namespace prefix mappings that were previously in force are restored.

See also pushContext(). -

TQString TQXmlNamespaceSupport::prefix ( const TQString & uri ) const +

TQString TQXmlNamespaceSupport::prefix ( const TQString & uri ) const

Returns one of the prefixes mapped to the namespace URI uri.

If more than one prefix is currently mapped to the same URI, this @@ -96,7 +96,7 @@ prefixes, use prefixes() instead.

Note: to check for a default prefix, use the uri() function with an argument of "". -

TQStringList TQXmlNamespaceSupport::prefixes () const +

TQStringList TQXmlNamespaceSupport::prefixes () const

Returns a list of all the prefixes currently declared.

If there is a default prefix, this function does not return it in @@ -105,7 +105,7 @@ argument of "".

Note that if you want to iterate over the list, you should iterate over a copy, e.g.

-    TQStringList list = myXmlNamespaceSupport.prefixes();
+    TQStringList list = myXmlNamespaceSupport.prefixes();
     TQStringList::iterator it = list.begin();
     while ( it != list.end() ) {
         myProcessing( *it );
@@ -114,7 +114,7 @@ over a copy, e.g.
     
-

TQStringList TQXmlNamespaceSupport::prefixes ( const TQString & uri ) const +

TQStringList TQXmlNamespaceSupport::prefixes ( const TQString & uri ) const

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Returns a list of all prefixes currently declared for the @@ -128,7 +128,7 @@ an argument of "".

Note that if you want to iterate over the list, you should iterate over a copy, e.g.

-    TQStringList list = myXmlNamespaceSupport.prefixes( "" );
+    TQStringList list = myXmlNamespaceSupport.prefixes( "" );
     TQStringList::Iterator it = list.begin();
     while( it != list.end() ) {
         myProcessing( *it );
@@ -137,7 +137,7 @@ over a copy, e.g.
     
-

void TQXmlNamespaceSupport::processName ( const TQString & qname, bool isAttribute, TQString & nsuri, TQString & localname ) const +

void TQXmlNamespaceSupport::processName ( const TQString & qname, bool isAttribute, TQString & nsuri, TQString & localname ) const

Processes a raw XML 1.0 name in the current context by removing the prefix and looking it up among the prefixes currently @@ -145,7 +145,7 @@ declared.

qname is the raw XML 1.0 name to be processed. isAttribute is TRUE if the name is an attribute name.

This function stores the namespace URI in nsuri (which will be -set to TQString::null if the raw name has an undeclared prefix), +set to TQString::null if the raw name has an undeclared prefix), and stores the local name (without prefix) in localname (which will be set to TQString::null if no namespace is in use).

Note that attribute names are processed differently than element @@ -165,7 +165,7 @@ which declarations were made within this context. Resets this namespace support object ready for reuse. -

void TQXmlNamespaceSupport::setPrefix ( const TQString & pre, const TQString & uri ) +

void TQXmlNamespaceSupport::setPrefix ( const TQString & pre, const TQString & uri )

This function declares a prefix pre in the current namespace context to be the namespace URI uri. The prefix remains in @@ -177,12 +177,12 @@ check for a default prefix, you must look it up explicitly using uri(). This asymmetry exists to make it easier to look up prefixes for attribute names, where the default prefix is not allowed. -

void TQXmlNamespaceSupport::splitName ( const TQString & qname, TQString & prefix, TQString & localname ) const +

void TQXmlNamespaceSupport::splitName ( const TQString & qname, TQString & prefix, TQString & localname ) const

Splits the name qname at the ':' and returns the prefix in prefix and the local name in localname.

See also processName(). -

TQString TQXmlNamespaceSupport::uri ( const TQString & prefix ) const +

TQString TQXmlNamespaceSupport::uri ( const TQString & prefix ) const

Looks up the prefix prefix in the current context and returns the currently-mapped namespace URI. Use the empty string ("") for -- cgit v1.2.1