summaryrefslogtreecommitdiffstats
path: root/src/klamav.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/klamav.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/klamav.cpp')
-rw-r--r--src/klamav.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/klamav.cpp b/src/klamav.cpp
index c2fe4ec..3e383e9 100644
--- a/src/klamav.cpp
+++ b/src/klamav.cpp
@@ -78,8 +78,8 @@ Klamav::Klamav()
TQToolTip::add( _tray, i18n( "KlamAV - Virus Protection for TDE" ) );
_tray->show();
- DisableFreshklam->setEnabled(FALSE);
- EnableFreshklam->setEnabled(TRUE);
+ DisableFreshklam->setEnabled(false);
+ EnableFreshklam->setEnabled(true);
config = TDEGlobal::config();
config->setGroup("Freshklam");
@@ -376,8 +376,8 @@ void Klamav::contextEnableFK() {
void Klamav::contextDisableFK() {
freshklam->slotCancel();
-// DisableFreshklam->setEnabled(FALSE);
-// EnableFreshklam->setEnabled(TRUE);
+// DisableFreshklam->setEnabled(false);
+// EnableFreshklam->setEnabled(true);
}