summaryrefslogtreecommitdiffstats
path: root/doc/man/man3/tqdns.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/tqdns.3qt
parent8c029298d9d3f1f84b65ac4a3a16cd1fa28d9cde (diff)
downloadtqt-e6077c30.tar.gz
tqt-e6077c30.zip
Rename str 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.3qt24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/man/man3/tqdns.3qt b/doc/man/man3/tqdns.3qt
index 38b3e062c..c205f7612 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