diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-04 11:37:37 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-11 08:18:14 +0200 |
commit | caf8f777e38e75641dcd13461053ba0bfd44500f (patch) | |
tree | 9bd4db6893ec1327e8e276b0088f0d7f69ecbdc4 /cui/source | |
parent | 5e36e2cb7b9a8e52f198525949da257acd87d8c6 (diff) |
svx: sal_Bool->bool
Change-Id: I41f3935a468f38c59bfbce7096bb086daf6190a3
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/tabpages/textattr.cxx | 2 | ||||
-rw-r--r-- | cui/source/tabpages/tpbitmap.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/tabpages/textattr.cxx b/cui/source/tabpages/textattr.cxx index 33d576cf607f..282d00920dba 100644 --- a/cui/source/tabpages/textattr.cxx +++ b/cui/source/tabpages/textattr.cxx @@ -283,7 +283,7 @@ void SvxTextAttrPage::Reset( const SfxItemSet& rAttrs ) m_pCtlPosition->Reset(); m_pCtlPosition->SetState(TRISTATE_INDET); - m_pCtlPosition->DoCompletelyDisable(sal_True); + m_pCtlPosition->DoCompletelyDisable(true); m_pTsbFullWidth->SetState(TRISTATE_INDET); m_pFlPosition->Enable( false ); diff --git a/cui/source/tabpages/tpbitmap.cxx b/cui/source/tabpages/tpbitmap.cxx index 9602ab38d91a..94761f559c64 100644 --- a/cui/source/tabpages/tpbitmap.cxx +++ b/cui/source/tabpages/tpbitmap.cxx @@ -343,7 +343,7 @@ IMPL_LINK_NOARG(SvxBitmapTabPage, ChangeBitmapHdl_Impl) if(bIs8x8) { - m_pCtlPixel->SetPaintable( sal_True ); + m_pCtlPixel->SetPaintable( true ); m_pBxPixelEditor->Enable(); m_pBtnModify->Enable(); m_pBtnAdd->Enable(); @@ -393,7 +393,7 @@ IMPL_LINK_NOARG(SvxBitmapTabPage, ChangeBitmapHdl_Impl) else { m_pCtlPixel->Reset(); - m_pCtlPixel->SetPaintable( sal_False ); + m_pCtlPixel->SetPaintable( false ); m_pBxPixelEditor->Disable(); m_pBtnModify->Disable(); m_pBtnAdd->Disable(); |