diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-05 19:02:23 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-05 19:02:23 +0900 |
commit | 1f0ce8533cc837aa2d4155b5fc17d2004bed0197 (patch) | |
tree | d62f4174c0e58e1aa895fc71484d068b614cd6de /doc/man/man3/tqdns.3qt | |
parent | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (diff) | |
download | tqt-1f0ce853.tar.gz tqt-1f0ce853.zip |
Rename template library nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man/man3/tqdns.3qt')
-rw-r--r-- | doc/man/man3/tqdns.3qt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/tqdns.3qt b/doc/man/man3/tqdns.3qt index 8aae9e479..38b3e062c 100644 --- a/doc/man/man3/tqdns.3qt +++ b/doc/man/man3/tqdns.3qt @@ -49,13 +49,13 @@ Inherits TQObject. .BI "bool \fBisWorking\fR () const" .br .ti -1c -.BI "QValueList<QHostAddress> \fBaddresses\fR () const" +.BI "TQValueList<QHostAddress> \fBaddresses\fR () const" .br .ti -1c -.BI "QValueList<MailServer> \fBmailServers\fR () const" +.BI "TQValueList<MailServer> \fBmailServers\fR () const" .br .ti -1c -.BI "QValueList<Server> \fBservers\fR () const" +.BI "TQValueList<Server> \fBservers\fR () const" .br .ti -1c .BI "QStringList \fBhostNames\fR () const" @@ -128,7 +128,7 @@ The DNS lookup is started the next time the application enters the event loop. W \fIrr\fR defaults to Ptr, that maps addresses to hostnames. .SH "QDns::~QDns ()\fC [virtual]\fR" Destroys the DNS query object and frees its allocated resources. -.SH "QValueList<QHostAddress> QDns::addresses () const" +.SH "TQValueList<QHostAddress> QDns::addresses () const" Returns a list of the addresses for this name if this QDns object has a recordType() of QDns::A or QDns::Aaaa and the answer is available; otherwise returns an empty list. .PP As a special case, if label() is a valid numeric IP address, this function returns that address. @@ -137,9 +137,9 @@ Note that if you want to iterate over the list, you should iterate over a copy, .PP .nf .br - QValueList<QHostAddress> list = myDns.addresses(); + TQValueList<QHostAddress> list = myDns.addresses(); .br - QValueList<QHostAddress>::Iterator it = list.begin(); + TQValueList<QHostAddress>::Iterator it = list.begin(); .br while( it != list.end() ) { .br @@ -186,7 +186,7 @@ Example: network/mail/smtp.cpp. Returns the domain name for which this object returns information. .PP See also setLabel(). -.SH "QValueList<MailServer> QDns::mailServers () const" +.SH "TQValueList<MailServer> QDns::mailServers () const" Returns a list of mail servers if the record type is Mx. The class \fCQDns::MailServer\fR contains the following public variables: .TP TQString QDns::MailServer::name @@ -197,9 +197,9 @@ Note that if you want to iterate over the list, you should iterate over a copy, .PP .nf .br - QValueList<QDns::MailServer> list = myDns.mailServers(); + TQValueList<QDns::MailServer> list = myDns.mailServers(); .br - QValueList<QDns::MailServer>::Iterator it = list.begin(); + TQValueList<QDns::MailServer>::Iterator it = list.begin(); .br while( it != list.end() ) { .br @@ -240,7 +240,7 @@ See also setRecordType() and RecordType. This signal is emitted when results are available for one of the qualifiedNames(). .PP Example: network/mail/smtp.cpp. -.SH "QValueList<Server> QDns::servers () const" +.SH "TQValueList<Server> QDns::servers () const" Returns a list of servers if the record type is Srv. The class \fCQDns::Server\fR contains the following public variables: .TP TQString QDns::Server::name @@ -255,9 +255,9 @@ Note that if you want to iterate over the list, you should iterate over a copy, .PP .nf .br - QValueList<QDns::Server> list = myDns.servers(); + TQValueList<QDns::Server> list = myDns.servers(); .br - QValueList<QDns::Server>::Iterator it = list.begin(); + TQValueList<QDns::Server>::Iterator it = list.begin(); .br while( it != list.end() ) { .br |