summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqxmlattributes.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqxmlattributes.3qt')
-rw-r--r--doc/man/man3/tqxmlattributes.3qt52
1 files changed, 26 insertions, 26 deletions
diff --git a/doc/man/man3/tqxmlattributes.3qt b/doc/man/man3/tqxmlattributes.3qt
index e5ba3705..ab0be284 100644
--- a/doc/man/man3/tqxmlattributes.3qt
+++ b/doc/man/man3/tqxmlattributes.3qt
@@ -22,10 +22,10 @@ All the functions in this class are reentrant when TQt is built with thread supp
.BI "virtual \fB~QXmlAttributes\fR ()"
.br
.ti -1c
-.BI "int \fBindex\fR ( const QString & qName ) const"
+.BI "int \fBindex\fR ( const TQString & qName ) const"
.br
.ti -1c
-.BI "int \fBindex\fR ( const QString & uri, const QString & localPart ) const"
+.BI "int \fBindex\fR ( const TQString & uri, const TQString & localPart ) const"
.br
.ti -1c
.BI "int \fBlength\fR () const"
@@ -34,37 +34,37 @@ All the functions in this class are reentrant when TQt is built with thread supp
.BI "int \fBcount\fR () const"
.br
.ti -1c
-.BI "QString \fBlocalName\fR ( int index ) const"
+.BI "TQString \fBlocalName\fR ( int index ) const"
.br
.ti -1c
-.BI "QString \fBqName\fR ( int index ) const"
+.BI "TQString \fBqName\fR ( int index ) const"
.br
.ti -1c
-.BI "QString \fBuri\fR ( int index ) const"
+.BI "TQString \fBuri\fR ( int index ) const"
.br
.ti -1c
-.BI "QString \fBtype\fR ( int index ) const"
+.BI "TQString \fBtype\fR ( int index ) const"
.br
.ti -1c
-.BI "QString \fBtype\fR ( const QString & qName ) const"
+.BI "TQString \fBtype\fR ( const TQString & qName ) const"
.br
.ti -1c
-.BI "QString \fBtype\fR ( const QString & uri, const QString & localName ) const"
+.BI "TQString \fBtype\fR ( const TQString & uri, const TQString & localName ) const"
.br
.ti -1c
-.BI "QString \fBvalue\fR ( int index ) const"
+.BI "TQString \fBvalue\fR ( int index ) const"
.br
.ti -1c
-.BI "QString \fBvalue\fR ( const QString & qName ) const"
+.BI "TQString \fBvalue\fR ( const TQString & qName ) const"
.br
.ti -1c
-.BI "QString \fBvalue\fR ( const QString & uri, const QString & localName ) const"
+.BI "TQString \fBvalue\fR ( const TQString & uri, const TQString & localName ) const"
.br
.ti -1c
.BI "void \fBclear\fR ()"
.br
.ti -1c
-.BI "void \fBappend\fR ( const QString & qName, const QString & uri, const QString & localPart, const QString & value )"
+.BI "void \fBappend\fR ( const TQString & qName, const TQString & uri, const TQString & localPart, const TQString & value )"
.br
.in -1c
.SH DESCRIPTION
@@ -80,7 +80,7 @@ See also XML.
Constructs an empty attribute list.
.SH "QXmlAttributes::~QXmlAttributes ()\fC [virtual]\fR"
Destroys the attributes object.
-.SH "void QXmlAttributes::append ( const QString & qName, const QString & uri, const QString & localPart, const QString & value )"
+.SH "void QXmlAttributes::append ( const TQString & qName, const TQString & uri, const TQString & localPart, const TQString & value )"
Appends a new attribute entry to the list of attributes. The qualified name of the attribute is \fIqName\fR, the namespace URI is \fIuri\fR and the local name is \fIlocalPart\fR. The value of the attribute is \fIvalue\fR.
.PP
See also qName(), uri(), localName(), and value().
@@ -90,13 +90,13 @@ Clears the list of attributes.
See also append().
.SH "int QXmlAttributes::count () const"
Returns the number of attributes in the list. This function is equivalent to length().
-.SH "int QXmlAttributes::index ( const QString & qName ) const"
+.SH "int QXmlAttributes::index ( const TQString & qName ) const"
Looks up the index of an attribute by the qualified name \fIqName\fR.
.PP
Returns the index of the attribute or -1 if it wasn't found.
.PP
See also the namespace description.
-.SH "int QXmlAttributes::index ( const QString & uri, const QString & localPart ) const"
+.SH "int QXmlAttributes::index ( const TQString & uri, const TQString & localPart ) const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Looks up the index of an attribute by a namespace name.
@@ -112,27 +112,27 @@ Returns the number of attributes in the list.
See also count().
.PP
Example: xml/tagreader-with-features/structureparser.cpp.
-.SH "QString QXmlAttributes::localName ( int index ) const"
-Looks up an attribute's local name for the attribute at position \fIindex\fR. If no namespace processing is done, the local name is QString::null.
+.SH "TQString QXmlAttributes::localName ( int index ) const"
+Looks up an attribute's local name for the attribute at position \fIindex\fR. If no namespace processing is done, the local name is TQString::null.
.PP
See also the namespace description.
-.SH "QString QXmlAttributes::qName ( int index ) const"
+.SH "TQString QXmlAttributes::qName ( int index ) const"
Looks up an attribute's XML 1.0 qualified name for the attribute at position \fIindex\fR.
.PP
See also the namespace description.
.PP
Example: xml/tagreader-with-features/structureparser.cpp.
-.SH "QString QXmlAttributes::type ( int index ) const"
+.SH "TQString QXmlAttributes::type ( int index ) const"
Looks up an attribute's type for the attribute at position \fIindex\fR.
.PP
Currently only "CDATA" is returned.
-.SH "QString QXmlAttributes::type ( const QString & qName ) const"
+.SH "TQString QXmlAttributes::type ( const TQString & qName ) const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Looks up an attribute's type for the qualified name \fIqName\fR.
.PP
Currently only "CDATA" is returned.
-.SH "QString QXmlAttributes::type ( const QString & uri, const QString & localName ) const"
+.SH "TQString QXmlAttributes::type ( const TQString & uri, const TQString & localName ) const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Looks up an attribute's type by namespace name.
@@ -140,21 +140,21 @@ Looks up an attribute's type by namespace name.
\fIuri\fR specifies the namespace URI and \fIlocalName\fR specifies the local name. If the name has no namespace URI, use an empty string for \fIuri\fR.
.PP
Currently only "CDATA" is returned.
-.SH "QString QXmlAttributes::uri ( int index ) const"
-Looks up an attribute's namespace URI for the attribute at position \fIindex\fR. If no namespace processing is done or if the attribute has no namespace, the namespace URI is QString::null.
+.SH "TQString QXmlAttributes::uri ( int index ) const"
+Looks up an attribute's namespace URI for the attribute at position \fIindex\fR. If no namespace processing is done or if the attribute has no namespace, the namespace URI is TQString::null.
.PP
See also the namespace description.
.PP
Example: xml/tagreader-with-features/structureparser.cpp.
-.SH "QString QXmlAttributes::value ( int index ) const"
+.SH "TQString QXmlAttributes::value ( int index ) const"
Looks up an attribute's value for the attribute at position \fIindex\fR.
-.SH "QString QXmlAttributes::value ( const QString & qName ) const"
+.SH "TQString QXmlAttributes::value ( const TQString & qName ) const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Looks up an attribute's value for the qualified name \fIqName\fR.
.PP
See also the namespace description.
-.SH "QString QXmlAttributes::value ( const QString & uri, const QString & localName ) const"
+.SH "TQString QXmlAttributes::value ( const TQString & uri, const TQString & localName ) const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Looks up an attribute's value by namespace name.