summaryrefslogtreecommitdiff
path: root/include/svtools/accessibleruler.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-14 15:52:39 +0200
committerNoel Grandin <noel@peralex.com>2014-04-15 09:02:32 +0200
commitcfddda092b0c105b5be7942a94cbbd88d55677f1 (patch)
tree4d4f9892f9fe158906b5927278bcd6f4a051d93e /include/svtools/accessibleruler.hxx
parent8fbbd1bd988f0e886095e012c48d93b999773273 (diff)
sal_Bool to bool in SvtRulerAccessible
Change-Id: Ib5f451fadb9eedc49d6bded0cbd92cfbbde71bae
Diffstat (limited to 'include/svtools/accessibleruler.hxx')
-rw-r--r--include/svtools/accessibleruler.hxx38
1 files changed, 19 insertions, 19 deletions
diff --git a/include/svtools/accessibleruler.hxx b/include/svtools/accessibleruler.hxx
index 13c0a6ba6a2f..ffaebca35772 100644
--- a/include/svtools/accessibleruler.hxx
+++ b/include/svtools/accessibleruler.hxx
@@ -67,6 +67,25 @@ public:
protected:
virtual ~SvtRulerAccessible();
public:
+ virtual bool SAL_CALL
+ isShowing() throw( ::com::sun::star::uno::RuntimeException );
+
+ virtual bool SAL_CALL
+ isVisible() throw( ::com::sun::star::uno::RuntimeException );
+
+ virtual bool SAL_CALL
+ isFocusTraversable() throw( ::com::sun::star::uno::RuntimeException );
+
+ virtual void SAL_CALL
+ addFocusListener(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFocusListener >& xListener )
+ throw( ::com::sun::star::uno::RuntimeException );
+
+ virtual void SAL_CALL
+ removeFocusListener(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFocusListener >& xListener )
+ throw( ::com::sun::star::uno::RuntimeException );
+
//===== XAccessible =====================================================
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext> SAL_CALL
@@ -92,25 +111,6 @@ public:
virtual ::com::sun::star::awt::Size SAL_CALL
getSize() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
- virtual sal_Bool SAL_CALL
- isShowing() throw( ::com::sun::star::uno::RuntimeException );
-
- virtual sal_Bool SAL_CALL
- isVisible() throw( ::com::sun::star::uno::RuntimeException );
-
- virtual sal_Bool SAL_CALL
- isFocusTraversable() throw( ::com::sun::star::uno::RuntimeException );
-
- virtual void SAL_CALL
- addFocusListener(
- const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFocusListener >& xListener )
- throw( ::com::sun::star::uno::RuntimeException );
-
- virtual void SAL_CALL
- removeFocusListener(
- const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFocusListener >& xListener )
- throw( ::com::sun::star::uno::RuntimeException );
-
virtual void SAL_CALL
grabFocus() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;