summaryrefslogtreecommitdiff
path: root/accessibility/source/extended/accessibletablistboxtable.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'accessibility/source/extended/accessibletablistboxtable.cxx')
-rw-r--r--accessibility/source/extended/accessibletablistboxtable.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/accessibility/source/extended/accessibletablistboxtable.cxx b/accessibility/source/extended/accessibletablistboxtable.cxx
index c3f594c54d43..67ffab24a0c3 100644
--- a/accessibility/source/extended/accessibletablistboxtable.cxx
+++ b/accessibility/source/extended/accessibletablistboxtable.cxx
@@ -270,12 +270,12 @@ namespace accessibility
throw IndexOutOfBoundsException();
}
- sal_Bool AccessibleTabListBoxTable::implIsRowSelected( sal_Int32 _nRow ) const
+ bool AccessibleTabListBoxTable::implIsRowSelected( sal_Int32 _nRow ) const
{
return m_pTabListBox ? m_pTabListBox->IsSelected( m_pTabListBox->GetEntry( _nRow ) ) : sal_False;
}
- void AccessibleTabListBoxTable::implSelectRow( sal_Int32 _nRow, sal_Bool _bSelect )
+ void AccessibleTabListBoxTable::implSelectRow( sal_Int32 _nRow, bool _bSelect )
{
if ( m_pTabListBox )
m_pTabListBox->Select( m_pTabListBox->GetEntry( _nRow ), _bSelect );
@@ -336,7 +336,7 @@ namespace accessibility
ensureIsAlive();
ensureValidIndex( nChildIndex );
- implSelectRow( implGetRow( nChildIndex ), sal_True );
+ implSelectRow( implGetRow( nChildIndex ), true );
}
sal_Bool SAL_CALL AccessibleTabListBoxTable::isAccessibleChildSelected( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
@@ -404,7 +404,7 @@ namespace accessibility
ensureIsAlive();
ensureValidIndex( nSelectedChildIndex );
- implSelectRow( implGetRow( nSelectedChildIndex ), sal_False );
+ implSelectRow( implGetRow( nSelectedChildIndex ), false );
}