summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqxmlnamespacesupport.3qt
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:44:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-06 13:52:29 +0900
commite6077c30d14e9d662e8843c554db86c0d366d0b6 (patch)
tree672319afee32f0316bad258c0e9a1e0dd737bd61 /doc/man/man3/tqxmlnamespacesupport.3qt
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.tar.gz
tqt3-e6077c30d14e9d662e8843c554db86c0d366d0b6.zip
Rename str nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqxmlnamespacesupport.3qt')
-rw-r--r--doc/man/man3/tqxmlnamespacesupport.3qt16
1 files changed, 8 insertions, 8 deletions
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