summaryrefslogtreecommitdiffstats
path: root/doc/html/tqnetworkprotocol.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/tqnetworkprotocol.html')
-rw-r--r--doc/html/tqnetworkprotocol.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/tqnetworkprotocol.html b/doc/html/tqnetworkprotocol.html
index 97fd87bf1..c9944dba6 100644
--- a/doc/html/tqnetworkprotocol.html
+++ b/doc/html/tqnetworkprotocol.html
@@ -199,15 +199,15 @@ immediately.
<h3 class=fn>bool <a name="autoDelete"></a>TQNetworkProtocol::autoDelete () const
</h3>
-Returns TRUE if auto-deleting is enabled; otherwise returns FALSE.
+Returns true if auto-deleting is enabled; otherwise returns false.
<p> <p>See also <a href="#setAutoDelete">TQNetworkProtocol::setAutoDelete</a>().
<h3 class=fn>bool <a name="checkConnection"></a>TQNetworkProtocol::checkConnection ( <a href="tqnetworkoperation.html">TQNetworkOperation</a>&nbsp;*&nbsp;op )<tt> [virtual protected]</tt>
</h3>
For processing operations the network protocol base class calls
this method quite often. This should be reimplemented by new
-network protocols. It should return TRUE if the connection is OK
-(open); otherwise it should return FALSE. If the connection is not
+network protocols. It should return true if the connection is OK
+(open); otherwise it should return false. If the connection is not
open the protocol should open it.
<p> If the connection can't be opened (e.g. because you already tried
but the host couldn't be found), set the state of <em>op</em> to
@@ -301,8 +301,8 @@ convenient.
<h3 class=fn>bool <a name="hasOnlyLocalFileSystem"></a>TQNetworkProtocol::hasOnlyLocalFileSystem ()<tt> [static]</tt>
</h3>
-Returns TRUE if the only protocol registered is for working on the
-local filesystem; returns FALSE if other network protocols are
+Returns true if the only protocol registered is for working on the
+local filesystem; returns false if other network protocols are
also registered.
<h3 class=fn>void <a name="itemChanged"></a>TQNetworkProtocol::itemChanged ( <a href="tqnetworkoperation.html">TQNetworkOperation</a>&nbsp;*&nbsp;op )<tt> [signal]</tt>
@@ -477,10 +477,10 @@ protocol, emit its corresponding signal.
</h3>
Because it's sometimes hard to take care of removing network
protocol instances, TQNetworkProtocol provides an auto-delete
-mechanism. If you set <em>b</em> to TRUE, the network protocol instance
+mechanism. If you set <em>b</em> to true, the network protocol instance
is removed after it has been inactive for <em>i</em> milliseconds (i.e.
<em>i</em> milliseconds after the last operation has been processed).
-If you set <em>b</em> to FALSE the auto-delete mechanism is switched
+If you set <em>b</em> to false the auto-delete mechanism is switched
off.
<p> If you switch on auto-delete, the TQNetworkProtocol also deletes
its <a href="tqurloperator.html">TQUrlOperator</a>.