diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-14 12:05:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-14 15:30:14 +0200 |
commit | 9a2c347e76c330b45504c8219510c9ef86503b86 (patch) | |
tree | 5b8065100740e67350a431c1ce3b69ef7e39446e /svx/source/inc | |
parent | 97e49876086bbdcb58ae0c22d9145c453f239468 (diff) |
inline some use-once typedefs
Change-Id: Ifefdb1ad20d09e257064171e458b2eb33065f5de
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100733
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/inc')
-rw-r--r-- | svx/source/inc/formcontroller.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/inc/formcontroller.hxx b/svx/source/inc/formcontroller.hxx index 80538a8393d5..065852fe9c3a 100644 --- a/svx/source/inc/formcontroller.hxx +++ b/svx/source/inc/formcontroller.hxx @@ -79,7 +79,6 @@ struct FmXTextComponentLess typedef ::std::map< css::uno::Reference< css::awt::XTextComponent >, OUString, FmXTextComponentLess> FmFilterRow; typedef ::std::vector< FmFilterRow > FmFilterRows; -typedef ::std::vector< css::uno::Reference< css::form::runtime::XFormController > > FmFormControllers; namespace vcl { class Window; } @@ -147,7 +146,8 @@ namespace svxform m_aParameterListeners, m_aFilterListeners; - FmFormControllers m_aChildren; + std::vector< css::uno::Reference< css::form::runtime::XFormController > > + m_aChildren; FilterComponents m_aFilterComponents; FmFilterRows m_aFilterRows; |