summaryrefslogtreecommitdiffstats
path: root/conduits/abbrowserconduit
diff options
context:
space:
mode:
Diffstat (limited to 'conduits/abbrowserconduit')
-rw-r--r--conduits/abbrowserconduit/abbrowser-conduit.cpp2
-rw-r--r--conduits/abbrowserconduit/resolutionDialog.cpp8
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() )
{