diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 12:43:45 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-02 09:12:50 +0900 |
| commit | a3fc822244ed669c7e71ea624429c815b0d6ede2 (patch) | |
| tree | 46be85985705ef17cc05626b2dfdd1c410a85367 /conduits/abbrowserconduit/resolutionDialog.cpp | |
| parent | 445267d75b91ebdce885a31f325a5bc9c257d268 (diff) | |
| download | kpilot-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.cpp | 8 |
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() ) { |
