summaryrefslogtreecommitdiff
path: root/accessibility
diff options
context:
space:
mode:
authorMichael Weghorn <m.weghorn@posteo.de>2024-05-24 08:01:12 +0200
committerMichael Weghorn <m.weghorn@posteo.de>2024-05-24 11:07:29 +0200
commit56572e8b9ab256373b9b1be2bf4b94519c7dd151 (patch)
tree0b20617cc7be907f4547e80ebca66c1aa6d75e43 /accessibility
parent2d568fe29bd95755746248fc54624d5dec03d9b7 (diff)
a11y: Drop AccessibleChildren typedef
... which is only used in the next line anyway. Change-Id: I3bb038cfba3b3b31df45ca316242d54442db7220 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168004 Reviewed-by: Michael Weghorn <m.weghorn@posteo.de> Tested-by: Jenkins
Diffstat (limited to 'accessibility')
-rw-r--r--accessibility/inc/standard/accessiblemenubasecomponent.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/accessibility/inc/standard/accessiblemenubasecomponent.hxx b/accessibility/inc/standard/accessiblemenubasecomponent.hxx
index 337ee0a80d00..7d62a63eff63 100644
--- a/accessibility/inc/standard/accessiblemenubasecomponent.hxx
+++ b/accessibility/inc/standard/accessiblemenubasecomponent.hxx
@@ -45,9 +45,7 @@ class OAccessibleMenuBaseComponent : public cppu::ImplInheritanceHelper<
friend class VCLXAccessibleMenu;
protected:
- typedef std::vector< rtl::Reference< OAccessibleMenuItemComponent > > AccessibleChildren;
-
- AccessibleChildren m_aAccessibleChildren1;
+ std::vector<rtl::Reference<OAccessibleMenuItemComponent>> m_aAccessibleChildren1;
VclPtr<Menu> m_pMenu;
bool m_bEnabled;