diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-08-06 11:29:57 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-11-16 17:42:59 +0900 |
| commit | 4d495175043c399fdca6e1bb4c74ef176fc76fb4 (patch) | |
| tree | 119a6d76d177dade68b3744cb660fe26b33c9864 /doc/html/tabdialog-example.html | |
| parent | cf2c8613706a3685266058db00c0e9f632c5bd24 (diff) | |
| download | tqt-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/tabdialog-example.html')
| -rw-r--r-- | doc/html/tabdialog-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/tabdialog-example.html b/doc/html/tabdialog-example.html index d5e407bb6..98db3911b 100644 --- a/doc/html/tabdialog-example.html +++ b/doc/html/tabdialog-example.html @@ -118,7 +118,7 @@ void <a name="f201"></a>TabDialog::setupTab1() fname-><a href="tqwidget.html#setFocus">setFocus</a>(); (void)new <a href="tqlabel.html">TQLabel</a>( "Path:", tab1 ); - <a href="tqlabel.html">TQLabel</a> *path = new <a href="tqlabel.html">TQLabel</a>( fileinfo.dirPath( TRUE ), tab1 ); + <a href="tqlabel.html">TQLabel</a> *path = new <a href="tqlabel.html">TQLabel</a>( fileinfo.dirPath( true ), tab1 ); <a name="x52"></a> path-><a href="tqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); (void)new <a href="tqlabel.html">TQLabel</a>( "Size:", tab1 ); @@ -146,15 +146,15 @@ void <a name="f202"></a>TabDialog::setupTab2() <a href="tqcheckbox.html">TQCheckBox</a> *readable = new <a href="tqcheckbox.html">TQCheckBox</a>( "Readable", bg ); if ( fileinfo.isReadable() ) -<a name="x51"></a> readable-><a href="tqcheckbox.html#setChecked">setChecked</a>( TRUE ); +<a name="x51"></a> readable-><a href="tqcheckbox.html#setChecked">setChecked</a>( true ); <a href="tqcheckbox.html">TQCheckBox</a> *writable = new <a href="tqcheckbox.html">TQCheckBox</a>( "Writeable", bg ); if ( fileinfo.isWritable() ) - writable-><a href="tqcheckbox.html#setChecked">setChecked</a>( TRUE ); + writable-><a href="tqcheckbox.html#setChecked">setChecked</a>( true ); <a href="tqcheckbox.html">TQCheckBox</a> *executable = new <a href="tqcheckbox.html">TQCheckBox</a>( "Executable", bg ); if ( fileinfo.isExecutable() ) - executable-><a href="tqcheckbox.html#setChecked">setChecked</a>( TRUE ); + executable-><a href="tqcheckbox.html#setChecked">setChecked</a>( true ); <a href="tqbuttongroup.html">TQButtonGroup</a> *bg2 = new <a href="tqbuttongroup.html">TQButtonGroup</a>( 2, TQGroupBox::Horizontal, "Owner", tab2 ); |
