diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-24 15:42:28 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-25 14:32:56 +0200 |
commit | 436cd900956b5fd0b6583954c002f8c28ca32698 (patch) | |
tree | 00bf0fb7c6daa0041670ce5209e5912780520a66 /sw/source/ui/fldui | |
parent | c849d750eb751d3f2b99d23cca1c8c08672ff379 (diff) |
svtools: sal_Bool->bool
Change-Id: Ifd3e643dbc6755839ad4af73ae141fd115ddb4f4
Diffstat (limited to 'sw/source/ui/fldui')
-rw-r--r-- | sw/source/ui/fldui/flddinf.cxx | 4 | ||||
-rw-r--r-- | sw/source/ui/fldui/fldref.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/ui/fldui/flddinf.cxx b/sw/source/ui/fldui/flddinf.cxx index 299f3b2fb2a0..372c6794ac63 100644 --- a/sw/source/ui/fldui/flddinf.cxx +++ b/sw/source/ui/fldui/flddinf.cxx @@ -94,7 +94,7 @@ void SwFldDokInfPage::Reset(const SfxItemSet& ) Init(); // general initialisation // initialise TypeListBox - m_pTypeTLB->SetUpdateMode(sal_False); + m_pTypeTLB->SetUpdateMode(false); m_pTypeTLB->Clear(); pSelEntry = 0; @@ -192,7 +192,7 @@ void SwFldDokInfPage::Reset(const SfxItemSet& ) if ( pSelEntry ) TypeHdl(); - m_pTypeTLB->SetUpdateMode(sal_True); + m_pTypeTLB->SetUpdateMode(true); m_pTypeTLB->SetSelectHdl(LINK(this, SwFldDokInfPage, TypeHdl)); m_pTypeTLB->SetDoubleClickHdl(LINK(this, SwFldDokInfPage, InsertHdl)); m_pSelectionLB->SetSelectHdl(LINK(this, SwFldDokInfPage, SubTypeHdl)); diff --git a/sw/source/ui/fldui/fldref.cxx b/sw/source/ui/fldui/fldref.cxx index 9236ef145cb0..0eb5cf156fb3 100644 --- a/sw/source/ui/fldui/fldref.cxx +++ b/sw/source/ui/fldui/fldref.cxx @@ -479,7 +479,7 @@ void SwFldRefPage::UpdateSubType() m_pSelectionLB->SetUpdateMode(false); m_pSelectionLB->Clear(); // #i83479# - m_pSelectionToolTipLB->SetUpdateMode(sal_False); + m_pSelectionToolTipLB->SetUpdateMode(false); m_pSelectionToolTipLB->Clear(); bool bShowSelectionToolTipLB( false ); @@ -632,7 +632,7 @@ void SwFldRefPage::UpdateSubType() m_pSelectionLB->Show( !bShowSelectionToolTipLB ); if ( bShowSelectionToolTipLB ) { - m_pSelectionToolTipLB->SetUpdateMode(sal_True); + m_pSelectionToolTipLB->SetUpdateMode(true); bool bEnable = m_pSelectionToolTipLB->GetEntryCount() != 0; m_pSelection->Enable( bEnable ); |