summaryrefslogtreecommitdiffstats
path: root/doc/html/ftpclient-example.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/ftpclient-example.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/ftpclient-example.html')
-rw-r--r--doc/html/ftpclient-example.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/html/ftpclient-example.html b/doc/html/ftpclient-example.html
index 13ad9fae4..3034d9ff0 100644
--- a/doc/html/ftpclient-example.html
+++ b/doc/html/ftpclient-example.html
@@ -73,7 +73,7 @@ commands. The GUI parts are done in the Designer.
void FtpMainWindow::init()
{
stateFtp = new <a href="ntqlabel.html">TQLabel</a>( tr("Unconnected"), statusBar() );
- statusBar()-&gt;addWidget( stateFtp, 0, TRUE );
+ statusBar()-&gt;addWidget( stateFtp, 0, true );
ftp = new <a href="ntqftp.html">TQFtp</a>( this );
<a name="x748"></a> connect( ftp, TQ_SIGNAL(<a href="ntqftp.html#commandStarted">commandStarted</a>(int)),
@@ -121,7 +121,7 @@ void FtpMainWindow::uploadFile()
0,
this,
"upload progress dialog",
- TRUE );
+ true );
<a name="x752"></a> connect( ftp, TQ_SIGNAL(<a href="ntqftp.html#dataTransferProgress">dataTransferProgress</a>(int,int)),
<a name="x770"></a> &amp;progress, TQ_SLOT(<a href="ntqprogressdialog.html#setProgress">setProgress</a>(int,int)) );
connect( ftp, TQ_SIGNAL(<a href="ntqftp.html#commandFinished">commandFinished</a>(int,bool)),
@@ -167,7 +167,7 @@ void FtpMainWindow::downloadFile()
0,
this,
"download progress dialog",
- TRUE );
+ true );
connect( ftp, TQ_SIGNAL(<a href="ntqftp.html#dataTransferProgress">dataTransferProgress</a>(int,int)),
&amp;progress, TQ_SLOT(<a href="ntqprogressdialog.html#setProgress">setProgress</a>(int,int)) );
connect( ftp, TQ_SIGNAL(<a href="ntqftp.html#commandFinished">commandFinished</a>(int,bool)),