summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-24 17:34:05 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-25 09:15:40 +0100
commitf9cc7509855c2e9efc1b7a37259919131e04da2c (patch)
tree4d2e6996a0f53f3a59bb90d274e320d4676771f7 /include
parentd96a2f432fb391d01e354236a440181058b332c2 (diff)
Reduce IAccessibleTabListBox to what's actually used
...the calls to getAccessibleChild(0) and getHeaderBar(BBYTE_COLUMNHEADERBAR) ultimately all ended up at AccessibleBrowseBox::implGetHeaderBar(BBTYPE_COLUMNHEADERBAR). Change-Id: Ie25659e19d0d1ce2dcde2d1440ecc69b4fa265b0
Diffstat (limited to 'include')
-rw-r--r--include/svtools/accessibletableprovider.hxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/svtools/accessibletableprovider.hxx b/include/svtools/accessibletableprovider.hxx
index 973ec03f875a..acd3feace9a9 100644
--- a/include/svtools/accessibletableprovider.hxx
+++ b/include/svtools/accessibletableprovider.hxx
@@ -145,14 +145,10 @@ public:
virtual css::uno::Reference< css::accessibility::XAccessible >
getMyself() = 0;
- virtual css::uno::Reference< css::accessibility::XAccessible >
- SAL_CALL getAccessibleChild( sal_Int32 nChildIndex )
- throw ( css::lang::IndexOutOfBoundsException, css::uno::RuntimeException, std::exception ) = 0;
-
- /** returns the accessible object for the row or the column header bar
+ /** returns the accessible object for the column header bar
*/
virtual css::uno::Reference< css::accessibility::XAccessible >
- getHeaderBar( ::svt::AccessibleBrowseBoxObjType _eObjType ) = 0;
+ getHeaderBar() = 0;
protected:
~IAccessibleTabListBox() {}