summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-19 14:42:35 +0200
committerNoel Grandin <noel@peralex.com>2014-02-21 12:19:20 +0200
commit634081d5de8a7bf88c5d21b5b9082d4eea7da02c (patch)
tree7deedc6de1e4b7721a5c077d67504cfae10623ba /editeng
parentd9fd1d531036c3014de081ab012c556c2a416039 (diff)
sal_Bool->bool
Change-Id: I65c60ae987263b96ac1a0d727f5c4e33431d7767
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/accessibility/AccessibleParaManager.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/editeng/source/accessibility/AccessibleParaManager.cxx b/editeng/source/accessibility/AccessibleParaManager.cxx
index c9b6479f9101..65d728097dd6 100644
--- a/editeng/source/accessibility/AccessibleParaManager.cxx
+++ b/editeng/source/accessibility/AccessibleParaManager.cxx
@@ -53,7 +53,7 @@ namespace accessibility
maChildren(1),
maEEOffset( 0, 0 ),
mnFocusedChild( -1 ),
- mbActive( sal_False )
+ mbActive( false )
{
}
@@ -139,12 +139,12 @@ namespace accessibility
}
}
- sal_Bool AccessibleParaManager::IsReferencable( WeakPara::HardRefType aChild )
+ bool AccessibleParaManager::IsReferencable( WeakPara::HardRefType aChild )
{
return aChild.is();
}
- sal_Bool AccessibleParaManager::IsReferencable( sal_Int32 nChild ) const
+ bool AccessibleParaManager::IsReferencable( sal_Int32 nChild ) const
{
DBG_ASSERT( 0 <= nChild && maChildren.size() > static_cast<size_t>(nChild),
"AccessibleParaManager::IsReferencable: invalid index" );
@@ -156,7 +156,7 @@ namespace accessibility
}
else
{
- return sal_False;
+ return false;
}
}
@@ -221,7 +221,7 @@ namespace accessibility
::std::for_each( begin(), end(), aAdapter );
}
- void AccessibleParaManager::SetActive( sal_Bool bActive )
+ void AccessibleParaManager::SetActive( bool bActive )
{
mbActive = bActive;