summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqdns.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/ntqdns.html')
-rw-r--r--doc/html/ntqdns.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/doc/html/ntqdns.html b/doc/html/ntqdns.html
index d1df6eb48..c894c3dbf 100644
--- a/doc/html/ntqdns.html
+++ b/doc/html/ntqdns.html
@@ -123,7 +123,7 @@ extensions will be added in future versions.
Constructs a DNS query object with invalid settings for both the
label and the search type.
-<h3 class=fn><a name="TQDns-2"></a>TQDns::TQDns ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, <a href="ntqdns.html#RecordType-enum">RecordType</a>&nbsp;rr = A )
+<h3 class=fn><a name="TQDns-2"></a>TQDns::TQDns ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;label, <a href="ntqdns.html#RecordType-enum">RecordType</a>&nbsp;rr = A )
</h3>
Constructs a DNS query object that will return record type <em>rr</em>
information about <em>label</em>.
@@ -167,7 +167,7 @@ over a copy, e.g.
</pre>
<p>
-<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="canonicalName"></a>TQDns::canonicalName () const
+<h3 class=fn><a href="tqstring.html">TQString</a> <a name="canonicalName"></a>TQDns::canonicalName () const
</h3>
Returns the canonical name for this DNS node. (This works
regardless of what <a href="#recordType">recordType</a>() is set to.)
@@ -180,13 +180,13 @@ is a CNAME to lillian.troll.no, and the search path for TQDns is
"l", "lillian.troll.no." and "l.trolltech.com" is
"lillian.troll.no.".
-<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="hostNames"></a>TQDns::hostNames () const
+<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="hostNames"></a>TQDns::hostNames () const
</h3>
Returns a list of host names if the record type is <a href="#RecordType-enum">Ptr</a>.
<p> Note that if you want to iterate over the list, you should iterate
over a copy, e.g.
<pre>
- <a href="ntqstringlist.html">TQStringList</a> list = myDns.hostNames();
+ <a href="tqstringlist.html">TQStringList</a> list = myDns.hostNames();
TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>();
while( it != list.<a href="tqvaluelist.html#end">end</a>() ) {
myProcessing( *it );
@@ -203,7 +203,7 @@ returns FALSE.
<p> TQDns emits the <a href="#resultsReady">resultsReady</a>() signal when the status changes to FALSE.
<p>Example: <a href="mail-example.html#x705">network/mail/smtp.cpp</a>.
-<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="label"></a>TQDns::label () const
+<h3 class=fn><a href="tqstring.html">TQString</a> <a name="label"></a>TQDns::label () const
</h3>
<p> Returns the domain name for which this object returns information.
@@ -214,7 +214,7 @@ returns FALSE.
Returns a list of mail servers if the record type is <a href="#RecordType-enum">Mx</a>. The
class <tt>TQDns::MailServer</tt> contains the following public variables:
<ul>
-<li> <a href="ntqstring.html">TQString</a> TQDns::MailServer::name
+<li> <a href="tqstring.html">TQString</a> TQDns::MailServer::name
<li> TQ_UINT16 TQDns::MailServer::priority
</ul>
<p> Note that if you want to iterate over the list, you should iterate
@@ -230,14 +230,14 @@ over a copy, e.g.
<p>
<p>Example: <a href="mail-example.html#x706">network/mail/smtp.cpp</a>.
-<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="qualifiedNames"></a>TQDns::qualifiedNames () const
+<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="qualifiedNames"></a>TQDns::qualifiedNames () const
</h3>
<p> Returns a list of the fully qualified names <a href="#label">label</a>() maps to.
<p> Note that if you want to iterate over the list, you should iterate
over a copy, e.g.
<pre>
- <a href="ntqstringlist.html">TQStringList</a> list = myDns.qualifiedNames();
+ <a href="tqstringlist.html">TQStringList</a> list = myDns.qualifiedNames();
TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>();
while( it != list.<a href="tqvaluelist.html#end">end</a>() ) {
myProcessing( *it );
@@ -264,7 +264,7 @@ over a copy, e.g.
Returns a list of servers if the record type is <a href="#RecordType-enum">Srv</a>. The class
<tt>TQDns::Server</tt> contains the following public variables:
<ul>
-<li> <a href="ntqstring.html">TQString</a> TQDns::Server::name
+<li> <a href="tqstring.html">TQString</a> TQDns::Server::name
<li> TQ_UINT16 TQDns::Server::priority
<li> TQ_UINT16 TQDns::Server::weight
<li> TQ_UINT16 TQDns::Server::port
@@ -281,7 +281,7 @@ over a copy, e.g.
</pre>
-<h3 class=fn>void <a name="setLabel"></a>TQDns::setLabel ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;label )<tt> [virtual]</tt>
+<h3 class=fn>void <a name="setLabel"></a>TQDns::setLabel ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;label )<tt> [virtual]</tt>
</h3>
Sets this DNS query object to query for information about <em>label</em>.
<p> This does not change the <a href="#recordType">recordType</a>(), but its <a href="#isWorking">isWorking</a>() status
@@ -306,13 +306,13 @@ event loop. When the result is found the signal <a href="#resultsReady">resultsR
emitted.
<p> <p>See also <a href="#RecordType-enum">RecordType</a>.
-<h3 class=fn><a href="ntqstringlist.html">TQStringList</a> <a name="texts"></a>TQDns::texts () const
+<h3 class=fn><a href="tqstringlist.html">TQStringList</a> <a name="texts"></a>TQDns::texts () const
</h3>
Returns a list of texts if the record type is <a href="#RecordType-enum">Txt</a>.
<p> Note that if you want to iterate over the list, you should iterate
over a copy, e.g.
<pre>
- <a href="ntqstringlist.html">TQStringList</a> list = myDns.texts();
+ <a href="tqstringlist.html">TQStringList</a> list = myDns.texts();
TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>();
while( it != list.<a href="tqvaluelist.html#end">end</a>() ) {
myProcessing( *it );