summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdns.3qt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/man/man3/tqdns.3qt')
-rw-r--r--doc/man/man3/tqdns.3qt24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/tqdns.3qt b/doc/man/man3/tqdns.3qt
index 38b3e062..c205f761 100644
--- a/doc/man/man3/tqdns.3qt
+++ b/doc/man/man3/tqdns.3qt
@@ -58,16 +58,16 @@ Inherits TQObject.
.BI "TQValueList<Server> \fBservers\fR () const"
.br
.ti -1c
-.BI "QStringList \fBhostNames\fR () const"
+.BI "TQStringList \fBhostNames\fR () const"
.br
.ti -1c
-.BI "QStringList \fBtexts\fR () const"
+.BI "TQStringList \fBtexts\fR () const"
.br
.ti -1c
.BI "TQString \fBcanonicalName\fR () const"
.br
.ti -1c
-.BI "QStringList \fBqualifiedNames\fR () const"
+.BI "TQStringList \fBqualifiedNames\fR () const"
.br
.in -1c
.SS "Signals"
@@ -156,16 +156,16 @@ Returns the canonical name for this DNS node. (This works regardless of what rec
If the canonical name isn't known, this function returns a null string.
.PP
The canonical name of a DNS node is its full name, or the full name of the target of its CNAME. For example, if l.trolltech.com is a CNAME to lillian.troll.no, and the search path for QDns is" trolltech.com", then the canonical name for all of "lillian"," l", "lillian.troll.no." and "l.trolltech.com" is" lillian.troll.no.".
-.SH "QStringList QDns::hostNames () const"
+.SH "TQStringList QDns::hostNames () const"
Returns a list of host names if the record type is Ptr.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
- QStringList list = myDns.hostNames();
+ TQStringList list = myDns.hostNames();
.br
- QStringList::Iterator it = list.begin();
+ TQStringList::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br
@@ -212,16 +212,16 @@ Note that if you want to iterate over the list, you should iterate over a copy,
.fi
.PP
Example: network/mail/smtp.cpp.
-.SH "QStringList QDns::qualifiedNames () const"
+.SH "TQStringList QDns::qualifiedNames () const"
Returns a list of the fully qualified names label() maps to.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
- QStringList list = myDns.qualifiedNames();
+ TQStringList list = myDns.qualifiedNames();
.br
- QStringList::Iterator it = list.begin();
+ TQStringList::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br
@@ -284,16 +284,16 @@ Sets this object to query for record type \fIrr\fR records.
The DNS lookup is started the next time the application enters the event loop. When the result is found the signal resultsReady() is emitted.
.PP
See also RecordType.
-.SH "QStringList QDns::texts () const"
+.SH "TQStringList QDns::texts () const"
Returns a list of texts if the record type is Txt.
.PP
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
.PP
.nf
.br
- QStringList list = myDns.texts();
+ TQStringList list = myDns.texts();
.br
- QStringList::Iterator it = list.begin();
+ TQStringList::Iterator it = list.begin();
.br
while( it != list.end() ) {
.br