summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqxmlreader.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqxmlreader.3qt')
-rw-r--r--doc/man/man3/tqxmlreader.3qt24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/tqxmlreader.3qt b/doc/man/man3/tqxmlreader.3qt
index b04868d9..65aa90ff 100644
--- a/doc/man/man3/tqxmlreader.3qt
+++ b/doc/man/man3/tqxmlreader.3qt
@@ -18,22 +18,22 @@ Inherited by QXmlSimpleReader.
.SS "Public Members"
.in +1c
.ti -1c
-.BI "virtual bool \fBfeature\fR ( const QString & name, bool * ok = 0 ) const = 0"
+.BI "virtual bool \fBfeature\fR ( const TQString & name, bool * ok = 0 ) const = 0"
.br
.ti -1c
-.BI "virtual void \fBsetFeature\fR ( const QString & name, bool value ) = 0"
+.BI "virtual void \fBsetFeature\fR ( const TQString & name, bool value ) = 0"
.br
.ti -1c
-.BI "virtual bool \fBhasFeature\fR ( const QString & name ) const = 0"
+.BI "virtual bool \fBhasFeature\fR ( const TQString & name ) const = 0"
.br
.ti -1c
-.BI "virtual void * \fBproperty\fR ( const QString & name, bool * ok = 0 ) const = 0"
+.BI "virtual void * \fBproperty\fR ( const TQString & name, bool * ok = 0 ) const = 0"
.br
.ti -1c
-.BI "virtual void \fBsetProperty\fR ( const QString & name, void * value ) = 0"
+.BI "virtual void \fBsetProperty\fR ( const TQString & name, void * value ) = 0"
.br
.ti -1c
-.BI "virtual bool \fBhasProperty\fR ( const QString & name ) const = 0"
+.BI "virtual bool \fBhasProperty\fR ( const TQString & name ) const = 0"
.br
.ti -1c
.BI "virtual void \fBsetEntityResolver\fR ( QXmlEntityResolver * handler ) = 0"
@@ -113,17 +113,17 @@ See also setEntityResolver().
Returns the error handler or 0 if none is set.
.PP
See also setErrorHandler().
-.SH "bool QXmlReader::feature ( const QString & name, bool * ok = 0 ) const\fC [pure virtual]\fR"
+.SH "bool QXmlReader::feature ( const TQString & name, bool * ok = 0 ) const\fC [pure virtual]\fR"
If the reader has the feature called \fIname\fR, the feature's value is returned. If no such feature exists the return value is undefined.
.PP
If \fIok\fR is not 0: \fI*ok\fR is set to TRUE if the reader has the feature called \fIname\fR; otherwise \fI*ok\fR is set to FALSE.
.PP
See also setFeature() and hasFeature().
-.SH "bool QXmlReader::hasFeature ( const QString & name ) const\fC [pure virtual]\fR"
+.SH "bool QXmlReader::hasFeature ( const TQString & name ) const\fC [pure virtual]\fR"
Returns \fCTRUE\fR if the reader has the feature called \fIname\fR; otherwise returns FALSE.
.PP
See also feature() and setFeature().
-.SH "bool QXmlReader::hasProperty ( const QString & name ) const\fC [pure virtual]\fR"
+.SH "bool QXmlReader::hasProperty ( const TQString & name ) const\fC [pure virtual]\fR"
Returns TRUE if the reader has the property \fIname\fR; otherwise returns FALSE.
.PP
See also property() and setProperty().
@@ -137,7 +137,7 @@ Reads an XML document from \fIinput\fR and parses it. Returns TRUE if the parsin
Example: xml/tagreader/tagreader.cpp.
.SH "bool QXmlReader::parse ( const QXmlInputSource & input )\fC [pure virtual]\fR"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
-.SH "void * QXmlReader::property ( const QString & name, bool * ok = 0 ) const\fC [pure virtual]\fR"
+.SH "void * QXmlReader::property ( const TQString & name, bool * ok = 0 ) const\fC [pure virtual]\fR"
If the reader has the property \fIname\fR, this function returns the value of the property; otherwise the return value is undefined.
.PP
If \fIok\fR is not 0: if the reader has the \fIname\fR property \fI*ok\fR is set to TRUE; otherwise \fI*ok\fR is set to FALSE.
@@ -165,7 +165,7 @@ See also entityResolver().
Sets the error handler to \fIhandler\fR. Clears the error handler if \fIhandler\fR is 0.
.PP
See also errorHandler().
-.SH "void QXmlReader::setFeature ( const QString & name, bool value )\fC [pure virtual]\fR"
+.SH "void QXmlReader::setFeature ( const TQString & name, bool value )\fC [pure virtual]\fR"
Sets the feature called \fIname\fR to the given \fIvalue\fR. If the reader doesn't have the feature nothing happens.
.PP
See also feature() and hasFeature().
@@ -175,7 +175,7 @@ Reimplemented in QXmlSimpleReader.
Sets the lexical handler to \fIhandler\fR.
.PP
See also lexicalHandler().
-.SH "void QXmlReader::setProperty ( const QString & name, void * value )\fC [pure virtual]\fR"
+.SH "void QXmlReader::setProperty ( const TQString & name, void * value )\fC [pure virtual]\fR"
Sets the property \fIname\fR to \fIvalue\fR. If the reader doesn't have the property nothing happens.
.PP
See also property() and hasProperty().