diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2016-02-06 19:09:05 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-02-09 07:40:38 +0000 |
commit | bbb5584669da418b2dcc63d842b97a863003d03b (patch) | |
tree | 385b9584246ea816e0d78bafd0595570aeb50797 /include/comphelper/propagg.hxx | |
parent | 805b328858e2d1414e7a9e7701c42a41ede2a617 (diff) |
sequence->vector in OPropertyArrayAggregationHelper
Change-Id: Ib6ad60495736ea6da4612d3e7591b514465069a2
Reviewed-on: https://gerrit.libreoffice.org/22180
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/comphelper/propagg.hxx')
-rw-r--r-- | include/comphelper/propagg.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/comphelper/propagg.hxx b/include/comphelper/propagg.hxx index f598236d703d..c88a42d65ed6 100644 --- a/include/comphelper/propagg.hxx +++ b/include/comphelper/propagg.hxx @@ -25,6 +25,7 @@ #include <comphelper/comphelperdllapi.h> #include <map> +#include <vector> //= property helper classes @@ -91,7 +92,7 @@ class COMPHELPER_DLLPUBLIC OPropertyArrayAggregationHelper: public ::cppu::IProp friend class OPropertySetAggregationHelper; protected: - css::uno::Sequence< css::beans::Property> m_aProperties; + std::vector<css::beans::Property> m_aProperties; internal::PropertyAccessorMap m_aPropertyAccessors; public: |