summaryrefslogtreecommitdiff
path: root/include/comphelper/propmultiplex.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-02-06 17:49:10 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-02-09 10:32:24 +0000
commit1cb7cc1f1df041e9bc4337f4352214a5779040cf (patch)
tree4755e80c61ed697c961fe10cbc449ce3986cfa07 /include/comphelper/propmultiplex.hxx
parent29b92329005eb2f31d2b76eafaa1ffff67387b8e (diff)
sequence->vector in OPropertyChangeMultiplexer
Change-Id: I4daa06fe14971ae34e089620ba07818d998764f0 Reviewed-on: https://gerrit.libreoffice.org/22179 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/comphelper/propmultiplex.hxx')
-rw-r--r--include/comphelper/propmultiplex.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/propmultiplex.hxx b/include/comphelper/propmultiplex.hxx
index 15d9da6899bb..2bafa2411114 100644
--- a/include/comphelper/propmultiplex.hxx
+++ b/include/comphelper/propmultiplex.hxx
@@ -72,7 +72,7 @@ namespace comphelper
class COMPHELPER_DLLPUBLIC OPropertyChangeMultiplexer :public cppu::WeakImplHelper< css::beans::XPropertyChangeListener>
{
friend class OPropertyChangeListener;
- css::uno::Sequence< OUString > m_aProperties;
+ std::vector< OUString > m_aProperties;
css::uno::Reference< css::beans::XPropertySet> m_xSet;
OPropertyChangeListener* m_pListener;
sal_Int32 m_nLockCount;