Replace TRUE/FALSE with boolean values true/false

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
master
Michele Calgaro 3 months ago
parent cd69374426
commit 24a21918d1
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -2290,7 +2290,7 @@ void KoolDock::saveConf()
config->writeEntry("fSteppy", fSteppy);
config->writeEntry("HighLightTime", fHighLightTime);
config->writeEntry("iSpace", iSpace);
config->writeEntry("FirstRun", FALSE);
config->writeEntry("FirstRun", false);
config->writeEntry("Xinerama", xinerama);
config->writeEntry("hideTimer", hideTimer);
config->writeEntry("Solid", Solid);
@ -2652,7 +2652,7 @@ void KoolDock::minApp()
for (i = 0, item = witems.at(0); item; i++, item = witems.next()) {
if (item->getId() == cId) {
// Set default's item icon
item->setIcon(KWin::icon(cId, iwBig2, iwBig2, TRUE));
item->setIcon(KWin::icon(cId, iwBig2, iwBig2, true));
}
}
KWin::deIconifyWindow(cId, true);
@ -2831,7 +2831,7 @@ void KoolDock::activateApp()
for (i = 0, item = witems.at(0); item; i++, item = witems.next()) {
if (item->getId() == cId) {
// Set default's item icon
item->setIcon(KWin::icon(cId, iwBig2, iwBig2, TRUE));
item->setIcon(KWin::icon(cId, iwBig2, iwBig2, true));
}
}
}

@ -369,7 +369,7 @@ void SetupDialogPrg::applist_dropped(TQDropEvent* e,const TQValueList<TQIconDrag
pos = name.findRev("/", -1);
if (pos != -1) {
name.remove(1, pos);
name.remove("/", TRUE);
name.remove("/", true);
}
// Create and show the appProp dialog
appdlg->cmdname->setText(name);

Loading…
Cancel
Save