diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-07-03 11:51:01 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-07-03 11:51:01 +0200 |
commit | 2134c9653ef1744cb6b422644673ed086f4f663d (patch) | |
tree | 0846a1a1cc1bf6ed9c6c79dcff860dcc7e89814d /comphelper/source | |
parent | d9ea0b15219d2774891e42012165ea389b9944a4 (diff) |
comphelper: sal_Bool -> bool
Change-Id: I7d7ae1f5ddff0cf7d11a407b190256f37a71d48a
Diffstat (limited to 'comphelper/source')
-rw-r--r-- | comphelper/source/misc/accessibleselectionhelper.cxx | 8 | ||||
-rw-r--r-- | comphelper/source/misc/accimplaccess.cxx | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/comphelper/source/misc/accessibleselectionhelper.cxx b/comphelper/source/misc/accessibleselectionhelper.cxx index 35c6622a75a8..814faa1df682 100644 --- a/comphelper/source/misc/accessibleselectionhelper.cxx +++ b/comphelper/source/misc/accessibleselectionhelper.cxx @@ -42,7 +42,7 @@ namespace comphelper void SAL_CALL OCommonAccessibleSelection::selectAccessibleChild( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException) { - implSelect( nChildIndex, sal_True ); + implSelect( nChildIndex, true ); } @@ -54,13 +54,13 @@ namespace comphelper void SAL_CALL OCommonAccessibleSelection::clearAccessibleSelection( ) throw (RuntimeException) { - implSelect( ACCESSIBLE_SELECTION_CHILD_ALL, sal_False ); + implSelect( ACCESSIBLE_SELECTION_CHILD_ALL, false ); } void SAL_CALL OCommonAccessibleSelection::selectAllAccessibleChildren( ) throw (RuntimeException) { - implSelect( ACCESSIBLE_SELECTION_CHILD_ALL, sal_True ); + implSelect( ACCESSIBLE_SELECTION_CHILD_ALL, true ); } @@ -102,7 +102,7 @@ namespace comphelper void SAL_CALL OCommonAccessibleSelection::deselectAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (IndexOutOfBoundsException, RuntimeException) { - implSelect( nSelectedChildIndex, sal_False ); + implSelect( nSelectedChildIndex, false ); } diff --git a/comphelper/source/misc/accimplaccess.cxx b/comphelper/source/misc/accimplaccess.cxx index 6cf56370a006..96f255dadb01 100644 --- a/comphelper/source/misc/accimplaccess.cxx +++ b/comphelper/source/misc/accimplaccess.cxx @@ -84,7 +84,7 @@ namespace comphelper } - void OAccessibleImplementationAccess::setStateBit( const sal_Int16 _nState, const sal_Bool _bSet ) + void OAccessibleImplementationAccess::setStateBit( const sal_Int16 _nState, const bool _bSet ) { OSL_ENSURE( _nState >= 0 && static_cast< sal_uInt16 >(_nState) < sizeof( sal_Int64 ) * 8, "OAccessibleImplementationAccess::setStateBit: no more bits (shutting down the universe now)!" ); |