From a3fc822244ed669c7e71ea624429c815b0d6ede2 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 28 Mar 2025 12:43:45 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro --- conduits/abbrowserconduit/resolutionDialog.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'conduits/abbrowserconduit/resolutionDialog.cpp') 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() ) { -- cgit v1.2.3