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 /extensions | |
parent | c849d750eb751d3f2b99d23cca1c8c08672ff379 (diff) |
svtools: sal_Bool->bool
Change-Id: Ifd3e643dbc6755839ad4af73ae141fd115ddb4f4
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/propctrlr/selectlabeldialog.cxx | 8 | ||||
-rw-r--r-- | extensions/source/propctrlr/taborder.cxx | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/extensions/source/propctrlr/selectlabeldialog.cxx b/extensions/source/propctrlr/selectlabeldialog.cxx index 22772136b5b0..d9a1a2685279 100644 --- a/extensions/source/propctrlr/selectlabeldialog.cxx +++ b/extensions/source/propctrlr/selectlabeldialog.cxx @@ -124,14 +124,14 @@ namespace pcr if (m_pInitialSelection) { - m_aControlTree.MakeVisible(m_pInitialSelection, sal_True); - m_aControlTree.Select(m_pInitialSelection, sal_True); + m_aControlTree.MakeVisible(m_pInitialSelection, true); + m_aControlTree.Select(m_pInitialSelection, true); } else { - m_aControlTree.MakeVisible(m_aControlTree.First(), sal_True); + m_aControlTree.MakeVisible(m_aControlTree.First(), true); if (m_aControlTree.FirstSelected()) - m_aControlTree.Select(m_aControlTree.FirstSelected(), sal_False); + m_aControlTree.Select(m_aControlTree.FirstSelected(), false); m_aNoAssignment.Check(true); } diff --git a/extensions/source/propctrlr/taborder.cxx b/extensions/source/propctrlr/taborder.cxx index 64ee7a75dc31..762f9e77a8cf 100644 --- a/extensions/source/propctrlr/taborder.cxx +++ b/extensions/source/propctrlr/taborder.cxx @@ -193,7 +193,7 @@ namespace pcr aName = ::comphelper::getString( xControl->getPropertyValue( PROPERTY_NAME ) ); // TODO: do Basic controls have a name? aImage = GetImage( xControl ); - m_pLB_Controls->InsertEntry( aName, aImage, aImage, 0, sal_False, TREELIST_APPEND, xControl.get() ); + m_pLB_Controls->InsertEntry( aName, aImage, aImage, 0, false, TREELIST_APPEND, xControl.get() ); } } else @@ -349,7 +349,7 @@ namespace pcr void* pData = pSelEntryPrev->GetUserData(); GetModel()->Remove( pSelEntryPrev ); - InsertEntry( aSelEntryPrevText, aImage, aImage, 0, sal_False, nSelEntryPos, pData ); + InsertEntry( aSelEntryPrevText, aImage, aImage, 0, false, nSelEntryPos, pData ); pSelEntry = NextSelected( pSelEntry ); } @@ -380,7 +380,7 @@ namespace pcr aImage = GetExpandedEntryBmp(pSelEntryNext); GetModel()->Remove( pSelEntryNext ); - InsertEntry( aSelEntryNextText, aImage, aImage, 0, sal_False, nSelEntryPos, pData ); + InsertEntry( aSelEntryNextText, aImage, aImage, 0, false, nSelEntryPos, pData ); pSelEntry = PrevSelected( pSelEntry ); } |