From 82ce4dd60785cf08f7844d20fd8051d6b30c3bf1 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 28 Feb 2014 15:42:50 +0200 Subject: editeng: sal_Bool->bool Change-Id: Icfda5e8e774b9b5a6c3d99b636e4ce772b93139d --- editeng/source/uno/unoedprx.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'editeng/source/uno/unoedprx.cxx') diff --git a/editeng/source/uno/unoedprx.cxx b/editeng/source/uno/unoedprx.cxx index 04b6ffd6c9dd..aa49d90e8a66 100644 --- a/editeng/source/uno/unoedprx.cxx +++ b/editeng/source/uno/unoedprx.cxx @@ -302,7 +302,7 @@ sal_Bool SvxAccessibleTextIndex::IsEditableRange( const SvxAccessibleTextIndex& -SvxEditSourceAdapter::SvxEditSourceAdapter() : mbEditSourceValid( sal_False ) +SvxEditSourceAdapter::SvxEditSourceAdapter() : mbEditSourceValid( false ) { } @@ -363,7 +363,7 @@ SvxViewForwarder* SvxEditSourceAdapter::GetViewForwarder() return NULL; } -SvxAccessibleTextEditViewAdapter* SvxEditSourceAdapter::GetEditViewForwarderAdapter( sal_Bool bCreate ) +SvxAccessibleTextEditViewAdapter* SvxEditSourceAdapter::GetEditViewForwarderAdapter( bool bCreate ) { if( mbEditSourceValid && mpAdaptee.get() ) { @@ -410,19 +410,19 @@ void SvxEditSourceAdapter::SetEditSource( ::std::auto_ptr< SvxEditSource > pAdap if( pAdaptee.get() ) { mpAdaptee = pAdaptee; - mbEditSourceValid = sal_True; + mbEditSourceValid = true; } else { // do a lazy delete (prevents us from deleting the broadcaster // from within a broadcast in // AccessibleTextHelper_Impl::Notify) - mbEditSourceValid = sal_False; + mbEditSourceValid = false; } } SAL_WNODEPRECATED_DECLARATIONS_POP -sal_Bool SvxEditSourceAdapter::IsValid() const +bool SvxEditSourceAdapter::IsValid() const { return mbEditSourceValid; } -- cgit