[Libreoffice-commits] core.git: comphelper/source include/comphelper
Noel Grandin
noelgrandin at gmail.com
Tue Feb 9 10:32:47 UTC 2016
comphelper/source/property/propmultiplex.cxx | 8 +++-----
include/comphelper/propmultiplex.hxx | 2 +-
2 files changed, 4 insertions(+), 6 deletions(-)
New commits:
commit 1cb7cc1f1df041e9bc4337f4352214a5779040cf
Author: Noel Grandin <noelgrandin at gmail.com>
Date: Sat Feb 6 17:49:10 2016 +0200
sequence->vector in OPropertyChangeMultiplexer
Change-Id: I4daa06fe14971ae34e089620ba07818d998764f0
Reviewed-on: https://gerrit.libreoffice.org/22179
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin at gmail.com>
diff --git a/comphelper/source/property/propmultiplex.cxx b/comphelper/source/property/propmultiplex.cxx
index 4c044ab..4a50e8c 100644
--- a/comphelper/source/property/propmultiplex.cxx
+++ b/comphelper/source/property/propmultiplex.cxx
@@ -104,9 +104,8 @@ void OPropertyChangeMultiplexer::dispose()
{
Reference< XPropertyChangeListener> xPreventDelete(this);
- const OUString* pProperties = m_aProperties.getConstArray();
- for (sal_Int32 i = 0; i < m_aProperties.getLength(); ++i, ++pProperties)
- m_xSet->removePropertyChangeListener(*pProperties, static_cast< XPropertyChangeListener*>(this));
+ for (const OUString& rProp : m_aProperties)
+ m_xSet->removePropertyChangeListener(rProp, static_cast< XPropertyChangeListener*>(this));
m_pListener->setAdapter(nullptr);
@@ -153,8 +152,7 @@ void OPropertyChangeMultiplexer::addProperty(const OUString& _sPropertyName)
if (m_xSet.is())
{
m_xSet->addPropertyChangeListener(_sPropertyName, static_cast< XPropertyChangeListener*>(this));
- m_aProperties.realloc(m_aProperties.getLength() + 1);
- m_aProperties.getArray()[m_aProperties.getLength()-1] = _sPropertyName;
+ m_aProperties.push_back(_sPropertyName);
m_bListening = true;
}
}
diff --git a/include/comphelper/propmultiplex.hxx b/include/comphelper/propmultiplex.hxx
index 15d9da6..2bafa24 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;
More information about the Libreoffice-commits
mailing list