From 436cd900956b5fd0b6583954c002f8c28ca32698 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 24 Mar 2014 15:42:28 +0200 Subject: svtools: sal_Bool->bool Change-Id: Ifd3e643dbc6755839ad4af73ae141fd115ddb4f4 --- dbaccess/source/ui/querydesign/JoinTableView.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'dbaccess/source/ui/querydesign/JoinTableView.cxx') diff --git a/dbaccess/source/ui/querydesign/JoinTableView.cxx b/dbaccess/source/ui/querydesign/JoinTableView.cxx index 3c04399e47c2..197402e15e7a 100644 --- a/dbaccess/source/ui/querydesign/JoinTableView.cxx +++ b/dbaccess/source/ui/querydesign/JoinTableView.cxx @@ -861,11 +861,11 @@ void OJoinTableView::DeselectConn(OTableConnection* pConn) // deselect the corresponding entries in the ListBox of the table window OTableWindow* pWin = pConn->GetSourceWin(); if (pWin && pWin->GetListBox()) - pWin->GetListBox()->SelectAll(sal_False); + pWin->GetListBox()->SelectAll(false); pWin = pConn->GetDestWin(); if (pWin && pWin->GetListBox()) - pWin->GetListBox()->SelectAll(sal_False); + pWin->GetListBox()->SelectAll(false); pConn->Deselect(); m_pSelectedConn = NULL; @@ -888,8 +888,8 @@ void OJoinTableView::SelectConn(OTableConnection* pConn) OTableWindowListBox* pDestBox = pConnDest->GetListBox(); if (pSourceBox && pDestBox) { - pSourceBox->SelectAll(sal_False); - pDestBox->SelectAll(sal_False); + pSourceBox->SelectAll(false); + pDestBox->SelectAll(false); SvTreeListEntry* pFirstSourceVisible = pSourceBox->GetFirstEntryInView(); SvTreeListEntry* pFirstDestVisible = pDestBox->GetFirstEntryInView(); @@ -903,14 +903,14 @@ void OJoinTableView::SelectConn(OTableConnection* pConn) SvTreeListEntry* pSourceEntry = pSourceBox->GetEntryFromText((*aIter)->GetData()->GetSourceFieldName()); if (pSourceEntry) { - pSourceBox->Select(pSourceEntry, sal_True); + pSourceBox->Select(pSourceEntry, true); pSourceBox->MakeVisible(pSourceEntry); } SvTreeListEntry* pDestEntry = pDestBox->GetEntryFromText((*aIter)->GetData()->GetDestFieldName()); if (pDestEntry) { - pDestBox->Select(pDestEntry, sal_True); + pDestBox->Select(pDestEntry, true); pDestBox->MakeVisible(pDestEntry); } -- cgit