summaryrefslogtreecommitdiffstats
path: root/doc/html/ntqnetworkprotocol.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-26 15:11:22 +0900
commitb87533f9904c10f24d6b2e8177c00944e3efe15b (patch)
treec1106a381c851b51e86004698457aef1211b77be /doc/html/ntqnetworkprotocol.html
parent894037c3e68e1573a34183d936171f8cda5085f3 (diff)
downloadtqt-r14.1.x.tar.gz
tqt-r14.1.x.zip
Replace TRUE/FALSE with boolean values true/false - part 4r14.1.x
Manually cherry-picked from commit 4d495175 Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/ntqnetworkprotocol.html')
-rw-r--r--doc/html/ntqnetworkprotocol.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/html/ntqnetworkprotocol.html b/doc/html/ntqnetworkprotocol.html
index 396100712..f1085a9b0 100644
--- a/doc/html/ntqnetworkprotocol.html
+++ b/doc/html/ntqnetworkprotocol.html
@@ -200,15 +200,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="qnetworkoperation.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
@@ -302,8 +302,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="qnetworkoperation.html">TQNetworkOperation</a>&nbsp;*&nbsp;op )<tt> [signal]</tt>
@@ -478,10 +478,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="ntqurloperator.html">TQUrlOperator</a>.