diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-14 15:52:39 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-15 09:02:32 +0200 |
commit | cfddda092b0c105b5be7942a94cbbd88d55677f1 (patch) | |
tree | 4d4f9892f9fe158906b5927278bcd6f4a051d93e /svtools | |
parent | 8fbbd1bd988f0e886095e012c48d93b999773273 (diff) |
sal_Bool to bool in SvtRulerAccessible
Change-Id: Ib5f451fadb9eedc49d6bded0cbd92cfbbde71bae
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/accessibleruler.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/control/accessibleruler.cxx b/svtools/source/control/accessibleruler.cxx index c9d55b98324e..acd7010d3741 100644 --- a/svtools/source/control/accessibleruler.cxx +++ b/svtools/source/control/accessibleruler.cxx @@ -119,12 +119,12 @@ awt::Size SAL_CALL SvtRulerAccessible::getSize() throw( RuntimeException, std::e return AWTSize( GetBoundingBox().GetSize() ); } -sal_Bool SAL_CALL SvtRulerAccessible::isShowing() throw( RuntimeException ) +bool SAL_CALL SvtRulerAccessible::isShowing() throw( RuntimeException ) { - return sal_True; + return true; } -sal_Bool SAL_CALL SvtRulerAccessible::isVisible() throw( RuntimeException ) +bool SAL_CALL SvtRulerAccessible::isVisible() throw( RuntimeException ) { ::osl::MutexGuard aGuard( m_aMutex ); @@ -133,9 +133,9 @@ sal_Bool SAL_CALL SvtRulerAccessible::isVisible() throw( RuntimeException ) return mpRepr->IsVisible(); } -sal_Bool SAL_CALL SvtRulerAccessible::isFocusTraversable() throw( RuntimeException ) +bool SAL_CALL SvtRulerAccessible::isFocusTraversable() throw( RuntimeException ) { - return sal_True; + return true; } //===== XAccessibleContext ================================================== |