diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2016-04-03 17:11:42 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-04-04 09:16:31 +0000 |
commit | fd4b1fb453c11f8789674afc324d04ac9fb7be67 (patch) | |
tree | dc1530f06f1fa559f19b6790bb077b03dda1e71c /include/toolkit/controls | |
parent | d3055b56c7a67e80e1c6e3bdd3838dd977a26926 (diff) |
sequence->vector in toolkit
Change-Id: Ia042eea672bb7535192132ae0b133d1745dc8cde
Reviewed-on: https://gerrit.libreoffice.org/23759
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/toolkit/controls')
-rw-r--r-- | include/toolkit/controls/eventcontainer.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/toolkit/controls/eventcontainer.hxx b/include/toolkit/controls/eventcontainer.hxx index 7590e57d563a..acc74cb65167 100644 --- a/include/toolkit/controls/eventcontainer.hxx +++ b/include/toolkit/controls/eventcontainer.hxx @@ -50,7 +50,7 @@ class NameContainer_Impl : public NameContainerHelper { NameContainerNameMap mHashMap; css::uno::Sequence< OUString > mNames; - css::uno::Sequence< css::uno::Any > mValues; + std::vector< css::uno::Any > mValues; sal_Int32 mnElementCount; css::uno::Type mType; |