summaryrefslogtreecommitdiffstats
path: root/src/klamscanoptions.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-29 11:48:11 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-03-29 19:06:41 +0900
commitf8e06865b749bd589201376cd26f82615de517a0 (patch)
tree19aa19a732b8334b35442dfd11298726521f58cf /src/klamscanoptions.cpp
parenta6263d7d3b2d5021f3fb1ca4b8f6479c2c8eeae0 (diff)
downloadklamav-f8e06865.tar.gz
klamav-f8e06865.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 355597852b2532cf7fa2fceb25e46ae2bc08ef70)
Diffstat (limited to 'src/klamscanoptions.cpp')
-rw-r--r--src/klamscanoptions.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/klamscanoptions.cpp b/src/klamscanoptions.cpp
index 4cb0ecf..f5cd4f2 100644
--- a/src/klamscanoptions.cpp
+++ b/src/klamscanoptions.cpp
@@ -23,7 +23,7 @@
* name 'name' and widget flags set to 'f'.
*
* The dialog will by default be modeless, unless you set 'modal' to
- * TRUE to construct a modal dialog.
+ * true to construct a modal dialog.
*/
KlamscanOptions::KlamscanOptions( TQWidget* parent, const char* name, bool modal, WFlags fl )
: TQDialog( parent, name, modal, fl )
@@ -147,7 +147,7 @@ KlamscanOptions::KlamscanOptions( TQWidget* parent, const char* name, bool modal
ScanOle = new TQCheckBox( FileTypes, "ScanOle" );
ScanOle->setGeometry( TQRect( 270, 50, 270, 21 ) );
- ScanOle->setChecked( FALSE );
+ ScanOle->setChecked( false );
VirusBroken = new TQCheckBox( FileTypes, "VirusBroken" );
VirusBroken->setGeometry( TQRect( 20, 80, 240, 20 ) );
@@ -155,11 +155,11 @@ KlamscanOptions::KlamscanOptions( TQWidget* parent, const char* name, bool modal
ExcludeQuarantine = new TQCheckBox( FileTypes, "ExcludeQuarantine" );
ExcludeQuarantine->setGeometry( TQRect( 270, 80, 270, 21 ) );
- ExcludeQuarantine->setChecked( FALSE );
+ ExcludeQuarantine->setChecked( false );
OK = new TQPushButton( this, i18n( "OK" ) );
OK->setGeometry( TQRect( 190, 626, 91, 31 ) );
- OK->setDefault( TRUE );
+ OK->setDefault( true );
connect( OK, TQ_SIGNAL(clicked()),
TQ_SLOT(updateSettings()) );