summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-28 15:42:50 +0200
committerNoel Grandin <noel@peralex.com>2014-03-03 08:59:38 +0200
commit82ce4dd60785cf08f7844d20fd8051d6b30c3bf1 (patch)
treeb263b8bdeff6691f21016f38ebc121801de66459 /editeng
parentec960fd3dea0c5b28f8dd1b3bd2b6e3afb4bc1cd (diff)
editeng: sal_Bool->bool
Change-Id: Icfda5e8e774b9b5a6c3d99b636e4ce772b93139d
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/uno/unoedprx.cxx10
1 files changed, 5 insertions, 5 deletions
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;
}