summaryrefslogtreecommitdiffstats
path: root/conduits/abbrowserconduit/resolutionDialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-28 12:43:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-02 09:12:50 +0900
commita3fc822244ed669c7e71ea624429c815b0d6ede2 (patch)
tree46be85985705ef17cc05626b2dfdd1c410a85367 /conduits/abbrowserconduit/resolutionDialog.cpp
parent445267d75b91ebdce885a31f325a5bc9c257d268 (diff)
downloadkpilot-a3fc822244ed669c7e71ea624429c815b0d6ede2.tar.gz
kpilot-a3fc822244ed669c7e71ea624429c815b0d6ede2.zip
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'conduits/abbrowserconduit/resolutionDialog.cpp')
-rw-r--r--conduits/abbrowserconduit/resolutionDialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/conduits/abbrowserconduit/resolutionDialog.cpp b/conduits/abbrowserconduit/resolutionDialog.cpp
index 1dd4e65..442a377 100644
--- a/conduits/abbrowserconduit/resolutionDialog.cpp
+++ b/conduits/abbrowserconduit/resolutionDialog.cpp
@@ -212,25 +212,25 @@ void ResolutionDlg::adjustButtons(ResolutionTable*tab)
if (!(tab->fExistItems & eExistsPC) )
{
fWidget->fPCValues->setText(i18n("Delete entry"));
- fWidget->fKeepBoth->setDisabled(TRUE);
+ fWidget->fKeepBoth->setDisabled(true);
fWidget->fKeepBoth->hide();
}
if (!(tab->fExistItems & eExistsPalm) )
{
fWidget->fPalmValues->setText(i18n("Delete entry"));
- fWidget->fKeepBoth->setDisabled(TRUE);
+ fWidget->fKeepBoth->setDisabled(true);
fWidget->fKeepBoth->hide();
}
if (!(tab->fExistItems & eExistsBackup) )
{
- fWidget->fBackupValues->setDisabled(TRUE);
+ fWidget->fBackupValues->setDisabled(true);
}
}
void ResolutionDlg::fillListView()
{
FUNCTIONSETUP;
- fWidget->fResolutionView->setSorting(-1, FALSE);
+ fWidget->fResolutionView->setSorting(-1, false);
fWidget->fResolutionView->clear();
for ( ResolutionItem* it = fTable->last(); it; it = fTable->prev() )
{