summaryrefslogtreecommitdiff
path: root/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-15 17:24:50 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-15 17:24:50 +0200
commitb0bac593bb7634dc1e2d65fffcb4d3060f38a1d3 (patch)
tree418b503597e5848eef11f3161b0ffd17413600e7 /accessibility/source/extended/accessibleiconchoicectrlentry.cxx
parent15652daf08fae35caff2e0cb0520644c7eb1f7ef (diff)
accessibility: sal_False/True -> false/true
Change-Id: I4ac9d6ce48217893246a82fde4546dad09c58bd0
Diffstat (limited to 'accessibility/source/extended/accessibleiconchoicectrlentry.cxx')
-rw-r--r--accessibility/source/extended/accessibleiconchoicectrlentry.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/accessibility/source/extended/accessibleiconchoicectrlentry.cxx b/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
index 935d80a0dd71..443feb1d5f54 100644
--- a/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
+++ b/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
@@ -494,7 +494,7 @@ throw(RuntimeException, std::exception)
sal_Int32 nLen = nEndIndex - nStartIndex + 1;
::svt::OStringTransfer::CopyString( sText.copy( nStartIndex, nLen ), m_pIconCtrl );
- return sal_True;
+ return true;
}
// XAccessibleEventBroadcaster
@@ -543,7 +543,7 @@ throw(RuntimeException, std::exception)
if ( !implIsValidRange( nIndex, nIndex, implGetText().getLength() ) )
throw IndexOutOfBoundsException();
- return sal_False;
+ return false;
}
sal_Unicode SAL_CALL AccessibleIconChoiceCtrlEntry::getCharacter( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException, std::exception)
{
@@ -603,7 +603,7 @@ throw(RuntimeException, std::exception)
if ( !implIsValidRange( nStartIndex, nEndIndex, implGetText().getLength() ) )
throw IndexOutOfBoundsException();
- return sal_False;
+ return false;
}
OUString SAL_CALL AccessibleIconChoiceCtrlEntry::getText( ) throw (::com::sun::star::uno::RuntimeException, std::exception)
{