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:13:08 +0900
commitbc1e1feb998dbde27fc1ba40c9edcf0165c6dc19 (patch)
tree44e7c1c198dd57036d9160737797bca8de7ab8b9 /conduits/abbrowserconduit/resolutionDialog.cpp
parent6a8d645ce8fe121ba5d88dd89a1cf0c39f83816d (diff)
downloadkpilot-r14.1.4.tar.gz
kpilot-r14.1.4.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit a3fc822244ed669c7e71ea624429c815b0d6ede2)
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() )
{