include/vcl/toolkit/svtabbx.hxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)
New commits: commit c2b621b6d9f41d269b4d1aafc5e8911dde51d607 Author: Michael Weghorn <m.wegh...@posteo.de> AuthorDate: Tue Aug 29 18:17:40 2023 +0200 Commit: Michael Weghorn <m.wegh...@posteo.de> CommitDate: Wed Aug 30 09:25:24 2023 +0200 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.wegh...@posteo.de> 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 );