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/man/man3/tqxmlnamespacesupport.3qt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'doc/man/man3/tqxmlnamespacesupport.3qt') diff --git a/doc/man/man3/tqxmlnamespacesupport.3qt b/doc/man/man3/tqxmlnamespacesupport.3qt index b324ec291..de1851389 100644 --- a/doc/man/man3/tqxmlnamespacesupport.3qt +++ b/doc/man/man3/tqxmlnamespacesupport.3qt @@ -37,10 +37,10 @@ All the functions in this class are reentrant when TQt is built with thread supp .BI "void \fBprocessName\fR ( const TQString & qname, bool isAttribute, TQString & nsuri, TQString & localname ) const" .br .ti -1c -.BI "QStringList \fBprefixes\fR () const" +.BI "TQStringList \fBprefixes\fR () const" .br .ti -1c -.BI "QStringList \fBprefixes\fR ( const TQString & uri ) const" +.BI "TQStringList \fBprefixes\fR ( const TQString & uri ) const" .br .ti -1c .BI "void \fBpushContext\fR ()" @@ -77,7 +77,7 @@ Returns one of the prefixes mapped to the namespace URI \fIuri\fR. If more than one prefix is currently mapped to the same URI, this function makes an arbitrary selection; if you want all of the prefixes, use prefixes() instead. .PP Note: to check for a default prefix, use the uri() function with an argument of "". -.SH "QStringList TQXmlNamespaceSupport::prefixes () const" +.SH "TQStringList TQXmlNamespaceSupport::prefixes () const" Returns a list of all the prefixes currently declared. .PP If there is a default prefix, this function does not return it in the list; check for the default prefix using uri() with an argument of "". @@ -86,9 +86,9 @@ Note that if you want to iterate over the list, you should iterate over a copy, .PP .nf .br - QStringList list = myXmlNamespaceSupport.prefixes(); + TQStringList list = myXmlNamespaceSupport.prefixes(); .br - QStringList::iterator it = list.begin(); + TQStringList::iterator it = list.begin(); .br while ( it != list.end() ) { .br @@ -99,7 +99,7 @@ Note that if you want to iterate over the list, you should iterate over a copy, } .br .fi -.SH "QStringList TQXmlNamespaceSupport::prefixes ( const TQString & uri ) const" +.SH "TQStringList TQXmlNamespaceSupport::prefixes ( const TQString & uri ) const" This is an overloaded member function, provided for convenience. It behaves essentially like the above function. .PP Returns a list of all prefixes currently declared for the namespace URI \fIuri\fR. @@ -112,9 +112,9 @@ Note that if you want to iterate over the list, you should iterate over a copy, .PP .nf .br - QStringList list = myXmlNamespaceSupport.prefixes( "" ); + TQStringList list = myXmlNamespaceSupport.prefixes( "" ); .br - QStringList::Iterator it = list.begin(); + TQStringList::Iterator it = list.begin(); .br while( it != list.end() ) { .br -- cgit v1.2.1