diff options
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() ) { |