diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 11:48:11 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-29 19:04:11 +0900 |
| commit | 355597852b2532cf7fa2fceb25e46ae2bc08ef70 (patch) | |
| tree | acaca2f7a2cee510d7cfddf066d1b1a5c507d010 /src/klamscanoptions.cpp | |
| parent | 321205fac0871f42bbe73b25f4a445320079c6f1 (diff) | |
| download | klamav-355597852b2532cf7fa2fceb25e46ae2bc08ef70.tar.gz klamav-355597852b2532cf7fa2fceb25e46ae2bc08ef70.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/klamscanoptions.cpp')
| -rw-r--r-- | src/klamscanoptions.cpp | 8 |
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()) ); |
