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:13:08 +0900 |
commit | bc1e1feb998dbde27fc1ba40c9edcf0165c6dc19 (patch) | |
tree | 44e7c1c198dd57036d9160737797bca8de7ab8b9 /conduits/abbrowserconduit | |
parent | 6a8d645ce8fe121ba5d88dd89a1cf0c39f83816d (diff) | |
download | kpilot-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')
-rw-r--r-- | conduits/abbrowserconduit/abbrowser-conduit.cpp | 2 | ||||
-rw-r--r-- | conduits/abbrowserconduit/resolutionDialog.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/conduits/abbrowserconduit/abbrowser-conduit.cpp b/conduits/abbrowserconduit/abbrowser-conduit.cpp index 6e63596..9657ef3 100644 --- a/conduits/abbrowserconduit/abbrowser-conduit.cpp +++ b/conduits/abbrowserconduit/abbrowser-conduit.cpp @@ -1522,7 +1522,7 @@ bool AbbrowserConduit::_buildResolutionTable(ResolutionTable*tab, const Addresse { FUNCTIONSETUP; if (!tab) return false; - tab->setAutoDelete( TRUE ); + tab->setAutoDelete( true ); tab->labels[0]=i18n("Item on PC"); tab->labels[1]=i18n("Handheld"); tab->labels[2]=i18n("Last sync"); 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() ) { |