summaryrefslogtreecommitdiff
path: root/basic/source/inc/namecont.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-02-06 09:35:45 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-02-08 12:30:29 +0000
commit310b65e5e93c500ac5ae3981120809df09230e56 (patch)
tree1fdaaff318ca039ea56e6b959b4036f48f2aaf58 /basic/source/inc/namecont.hxx
parent16b93ae648f3e9675eeb6980925957e2ccbcfdf2 (diff)
sequence->vector in basic
Change-Id: Ic1b72a6c5e9df5d0fa65626ec1d8eda6a2d2feec Reviewed-on: https://gerrit.libreoffice.org/22176 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basic/source/inc/namecont.hxx')
-rw-r--r--basic/source/inc/namecont.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/inc/namecont.hxx b/basic/source/inc/namecont.hxx
index 0978c1de8cb9..1032797d96fd 100644
--- a/basic/source/inc/namecont.hxx
+++ b/basic/source/inc/namecont.hxx
@@ -72,8 +72,8 @@ class NameContainer : public ::cppu::BaseMutex, public NameContainer_BASE
typedef std::unordered_map < OUString, sal_Int32, OUStringHash > NameContainerNameMap;
NameContainerNameMap mHashMap;
- css::uno::Sequence< OUString > mNames;
- css::uno::Sequence< css::uno::Any > mValues;
+ std::vector< OUString > mNames;
+ std::vector< css::uno::Any > mValues;
sal_Int32 mnElementCount;
css::uno::Type mType;