From 649c4c61a1f1f479f4532b196f68df476cef2680 Mon Sep 17 00:00:00 2001
From: Michele Calgaro <michele.calgaro@yahoo.it>
Date: Thu, 31 Jul 2025 13:49:02 +0900
Subject: Amend to previous 'replace TRUE/FALSE' commit

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
---
 doc/man/man3/tqftp.3qt        | 8 ++++----
 doc/man/man3/tqguardedptr.3qt | 2 +-
 doc/man/man3/tqhttp.3qt       | 8 ++++----
 doc/man/man3/tqxmlreader.3qt  | 2 +-
 4 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/doc/man/man3/tqftp.3qt b/doc/man/man3/tqftp.3qt
index d11610054..55db85c4d 100644
--- a/doc/man/man3/tqftp.3qt
+++ b/doc/man/man3/tqftp.3qt
@@ -361,13 +361,13 @@ Destructor.
 .SH "void TQFtp::abort ()\fC [slot]\fR"
 Aborts the current command and deletes all scheduled commands.
 .PP
-If there is an unfinished command (i.e. a command for which the commandStarted() signal has been emitted, but for which the commandFinished() signal has not been emitted), this function sends an \fCABORT\fR command to the server. When the server replies that the command is aborted, the commandFinished() signal with the \fCerror\fR argument set to \fCTRUE\fR is emitted for the command. Due to timing issues, it is possible that the command had already finished before the abort request reached the server, in which case, the commandFinished() signal is emitted with the \fCerror\fR argument set to \fCFALSE\fR.
+If there is an unfinished command (i.e. a command for which the commandStarted() signal has been emitted, but for which the commandFinished() signal has not been emitted), this function sends an \fCABORT\fR command to the server. When the server replies that the command is aborted, the commandFinished() signal with the \fCerror\fR argument set to \fCtrue\fR is emitted for the command. Due to timing issues, it is possible that the command had already finished before the abort request reached the server, in which case, the commandFinished() signal is emitted with the \fCerror\fR argument set to \fCfalse\fR.
 .PP
 For all other commands that are affected by the abort(), no signals are emitted.
 .PP
 If you don't start further FTP commands directly after the abort(), there won't be any scheduled commands and the done() signal is emitted.
 .PP
-\fBWarning:\fR Some FTP servers, for example the BSD FTP daemon (version 0.3), wrongly return a positive reply even when an abort has occurred. For these servers the commandFinished() signal has its error flag set to \fCFALSE\fR, even though the command did not complete successfully.
+\fBWarning:\fR Some FTP servers, for example the BSD FTP daemon (version 0.3), wrongly return a positive reply even when an abort has occurred. For these servers the commandFinished() signal has its error flag set to \fCfalse\fR, even though the command did not complete successfully.
 .PP
 See also clearPendingCommands().
 .PP
@@ -461,11 +461,11 @@ See also commandFinished(), error(), and errorString().
 .PP
 Example: network/ftpclient/ftpmainwindow.ui.h.
 .SH "Error TQFtp::error () const"
-Returns the last error that occurred. This is useful to find out what when wrong when receiving a commandFinished() or a done() signal with the \fCerror\fR argument set to \fCTRUE\fR.
+Returns the last error that occurred. This is useful to find out what when wrong when receiving a commandFinished() or a done() signal with the \fCerror\fR argument set to \fCtrue\fR.
 .PP
 If you start a new command, the error status is reset to NoError.
 .SH "TQString TQFtp::errorString () const"
-Returns a human-readable description of the last error that occurred. This is useful for presenting a error message to the user when receiving a commandFinished() or a done() signal with the \fCerror\fR argument set to \fCTRUE\fR.
+Returns a human-readable description of the last error that occurred. This is useful for presenting a error message to the user when receiving a commandFinished() or a done() signal with the \fCerror\fR argument set to \fCtrue\fR.
 .PP
 The error string is often (but not always) the reply from the server, so it is not always possible to translate the string. If the message comes from Qt, the string has already passed through tr().
 .PP
diff --git a/doc/man/man3/tqguardedptr.3qt b/doc/man/man3/tqguardedptr.3qt
index 4d874c93c..5a24f99a2 100644
--- a/doc/man/man3/tqguardedptr.3qt
+++ b/doc/man/man3/tqguardedptr.3qt
@@ -102,7 +102,7 @@ Copy one guarded pointer from another. The constructed guarded pointer points to
 .SH "TQGuardedPtr::~TQGuardedPtr ()"
 Destroys the guarded pointer. Just like a normal pointer, destroying a guarded pointer does \fInot\fR destroy the object being pointed to.
 .SH "bool TQGuardedPtr::isNull () const"
-Returns \fCTRUE\fR if the referenced object has been destroyed or if there is no referenced object; otherwise returns false.
+Returns \fCtrue\fR if the referenced object has been destroyed or if there is no referenced object; otherwise returns false.
 .SH "TQGuardedPtr::operator T * () const"
 Cast operator; implements pointer semantics. Because of this function you can pass a TQGuardedPtr<X> to a function where an X* is required.
 .SH "bool TQGuardedPtr::operator!= ( const TQGuardedPtr<T> & p ) const"
diff --git a/doc/man/man3/tqhttp.3qt b/doc/man/man3/tqhttp.3qt
index e5663caf2..9e03d48d4 100644
--- a/doc/man/man3/tqhttp.3qt
+++ b/doc/man/man3/tqhttp.3qt
@@ -326,9 +326,9 @@ Destroys the TQHttp object. If there is an open connection, it is closed.
 .SH "void TQHttp::abort ()\fC [slot]\fR"
 Aborts the current request and deletes all scheduled requests.
 .PP
-For the current request, the requestFinished() signal with the \fCerror\fR argument \fCTRUE\fR is emitted. For all other requests that are affected by the abort(), no signals are emitted.
+For the current request, the requestFinished() signal with the \fCerror\fR argument \fCtrue\fR is emitted. For all other requests that are affected by the abort(), no signals are emitted.
 .PP
-Since this slot also deletes the scheduled requests, there are no requests left and the done() signal is emitted (with the \fCerror\fR argument \fCTRUE\fR).
+Since this slot also deletes the scheduled requests, there are no requests left and the done() signal is emitted (with the \fCerror\fR argument \fCtrue\fR).
 .PP
 See also clearPendingRequests().
 .SH "TQ_ULONG TQHttp::bytesAvailable () const"
@@ -392,11 +392,11 @@ This signal is emitted when the last pending request has finished; (it is emitte
 .PP
 See also requestFinished(), error(), and errorString().
 .SH "Error TQHttp::error () const"
-Returns the last error that occurred. This is useful to find out what happened when receiving a requestFinished() or a done() signal with the \fCerror\fR argument \fCTRUE\fR.
+Returns the last error that occurred. This is useful to find out what happened when receiving a requestFinished() or a done() signal with the \fCerror\fR argument \fCtrue\fR.
 .PP
 If you start a new request, the error status is reset to NoError.
 .SH "TQString TQHttp::errorString () const"
-Returns a human-readable description of the last error that occurred. This is useful to present a error message to the user when receiving a requestFinished() or a done() signal with the \fCerror\fR argument \fCTRUE\fR.
+Returns a human-readable description of the last error that occurred. This is useful to present a error message to the user when receiving a requestFinished() or a done() signal with the \fCerror\fR argument \fCtrue\fR.
 .SH "int TQHttp::get ( const TQString & path, TQIODevice * to = 0 )"
 Sends a get request for \fIpath\fR to the server set by setHost() or as specified in the constructor.
 .PP
diff --git a/doc/man/man3/tqxmlreader.3qt b/doc/man/man3/tqxmlreader.3qt
index 6cb017dbb..3504f5cd0 100644
--- a/doc/man/man3/tqxmlreader.3qt
+++ b/doc/man/man3/tqxmlreader.3qt
@@ -120,7 +120,7 @@ If \fIok\fR is not 0: \fI*ok\fR is set to true if the reader has the feature cal
 .PP
 See also setFeature() and hasFeature().
 .SH "bool TQXmlReader::hasFeature ( const TQString & name ) const\fC [pure virtual]\fR"
-Returns \fCTRUE\fR if the reader has the feature called \fIname\fR; otherwise returns false.
+Returns \fCtrue\fR if the reader has the feature called \fIname\fR; otherwise returns false.
 .PP
 See also feature() and setFeature().
 .SH "bool TQXmlReader::hasProperty ( const TQString & name ) const\fC [pure virtual]\fR"
-- 
cgit v1.2.3

