diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2023-08-29 18:17:40 +0200 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2023-08-30 09:25:24 +0200 |
commit | c2b621b6d9f41d269b4d1aafc5e8911dde51d607 (patch) | |
tree | b33da32f33c136c53f6fecbb4289055ee2711652 /include | |
parent | 252132d9752964a4aa82567b6a3ca8cd7df5ccfb (diff) |
a11y: Drop AccessibleChildren typedef
It's only used a single time anyway.
Change-Id: Icef8bb635b9cf2cb2d244619fb9b63eb395213d2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156258
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/toolkit/svtabbx.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/vcl/toolkit/svtabbx.hxx b/include/vcl/toolkit/svtabbx.hxx index c154969678b9..1fd7b8b16e12 100644 --- a/include/vcl/toolkit/svtabbx.hxx +++ b/include/vcl/toolkit/svtabbx.hxx @@ -93,12 +93,10 @@ namespace vcl { class VCL_DLLPUBLIC SvHeaderTabListBox : public SvTabListBox, public vcl::IAccessibleTableProvider { private: - typedef ::std::vector< css::uno::Reference< css::accessibility::XAccessible > > AccessibleChildren; - bool m_bFirstPaint; std::unique_ptr<::vcl::SvHeaderTabListBoxImpl> m_pImpl; ::vcl::IAccessibleTabListBox* m_pAccessible; - AccessibleChildren m_aAccessibleChildren; + std::vector<css::uno::Reference<css::accessibility::XAccessible>> m_aAccessibleChildren; DECL_DLLPRIVATE_LINK( ScrollHdl_Impl, SvTreeListBox*, void ); DECL_DLLPRIVATE_LINK( CreateAccessibleHdl_Impl, HeaderBar*, void ); |