summaryrefslogtreecommitdiffstats
path: root/doc/html/ftpclient-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-08-06 11:29:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-11-16 17:42:59 +0900
commit4d495175043c399fdca6e1bb4c74ef176fc76fb4 (patch)
tree119a6d76d177dade68b3744cb660fe26b33c9864 /doc/html/ftpclient-example.html
parentcf2c8613706a3685266058db00c0e9f632c5bd24 (diff)
downloadtqt-4d495175043c399fdca6e1bb4c74ef176fc76fb4.tar.gz
tqt-4d495175043c399fdca6e1bb4c74ef176fc76fb4.zip
Replace TRUE/FALSE with boolean values true/false - part 4
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 0296997c1..82e2fe7da 100644
--- a/doc/html/ftpclient-example.html
+++ b/doc/html/ftpclient-example.html
@@ -72,7 +72,7 @@ commands. The GUI parts are done in the Designer.
void FtpMainWindow::init()
{
stateFtp = new <a href="tqlabel.html">TQLabel</a>( tr("Unconnected"), statusBar() );
- statusBar()-&gt;addWidget( stateFtp, 0, TRUE );
+ statusBar()-&gt;addWidget( stateFtp, 0, true );
ftp = new <a href="tqftp.html">TQFtp</a>( this );
<a name="x748"></a> connect( ftp, TQ_SIGNAL(<a href="tqftp.html#commandStarted">commandStarted</a>(int)),
@@ -120,7 +120,7 @@ void FtpMainWindow::uploadFile()
0,
this,
"upload progress dialog",
- TRUE );
+ true );
<a name="x752"></a> connect( ftp, TQ_SIGNAL(<a href="tqftp.html#dataTransferProgress">dataTransferProgress</a>(int,int)),
<a name="x770"></a> &amp;progress, TQ_SLOT(<a href="tqprogressdialog.html#setProgress">setProgress</a>(int,int)) );
connect( ftp, TQ_SIGNAL(<a href="tqftp.html#commandFinished">commandFinished</a>(int,bool)),
@@ -166,7 +166,7 @@ void FtpMainWindow::downloadFile()
0,
this,
"download progress dialog",
- TRUE );
+ true );
connect( ftp, TQ_SIGNAL(<a href="tqftp.html#dataTransferProgress">dataTransferProgress</a>(int,int)),
&amp;progress, TQ_SLOT(<a href="tqprogressdialog.html#setProgress">setProgress</a>(int,int)) );
connect( ftp, TQ_SIGNAL(<a href="tqftp.html#commandFinished">commandFinished</a>(int,bool)),