summaryrefslogtreecommitdiffstats
path: root/kcontrol/smartcard/smartcard.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-05-25 18:08:57 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-05-27 10:24:24 +0900
commit0a439ac80bdf6ffb9cac104ad3098a321ee0403c (patch)
tree737edb6e89138f645d20bab7378e1ba90df09863 /kcontrol/smartcard/smartcard.cpp
parent0ba4723b7fad260e7bfe1848d0d16329779b090f (diff)
downloadtdebase-0a439ac80bdf6ffb9cac104ad3098a321ee0403c.tar.gz
tdebase-0a439ac80bdf6ffb9cac104ad3098a321ee0403c.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kcontrol/smartcard/smartcard.cpp')
-rw-r--r--kcontrol/smartcard/smartcard.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kcontrol/smartcard/smartcard.cpp b/kcontrol/smartcard/smartcard.cpp
index 8425d9124..998f936e8 100644
--- a/kcontrol/smartcard/smartcard.cpp
+++ b/kcontrol/smartcard/smartcard.cpp
@@ -92,7 +92,7 @@ KSmartcardConfig::KSmartcardConfig(TQWidget *parent, const char *name)
"",
"signalReaderListChanged(TQStringList)",
"loadReadersTab(TQStringList)",
- FALSE))
+ false))
kdDebug()<<"Error connecting to DCOP server" <<endl;
@@ -101,7 +101,7 @@ KSmartcardConfig::KSmartcardConfig(TQWidget *parent, const char *name)
"",
"signalCardStateChanged(TQString,bool,TQString)",
"updateReadersState (TQString,bool,TQString) ",
- FALSE))
+ false))
kdDebug()<<"Error connecting to DCOP server" <<endl;
_cardDB= new KCardDB();
@@ -263,14 +263,14 @@ void KSmartcardConfig::getSupportingModule( TDEListViewItem * ant,
type,
subType,
subSubType);
- hil->setSelectable(FALSE);
+ hil->setSelectable(false);
}
else{
TDEListViewItem * hil =new TDEListViewItem(ant,
i18n("No module managing this card"));
- hil->setSelectable(FALSE);
+ hil->setSelectable(false);
}
}