diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-19 09:14:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-19 09:33:29 +0200 |
commit | 2554efabb6d7cd2ad9f7cfdddd0712c25cdca1cd (patch) | |
tree | 1b8fd3940910ffcd328e16a53e208c099f67ab21 /basic/source | |
parent | f7b5f477bfd942e0a1d8880c372635000d724dd7 (diff) |
use comphelper::containerToSequence
in chart2, we remove a local equivalent of the method
Change-Id: I25129a3d1ea1dd724eb9cd38a57be37a78b3d100
Diffstat (limited to 'basic/source')
-rw-r--r-- | basic/source/classes/propacc.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/basic/source/classes/propacc.cxx b/basic/source/classes/propacc.cxx index fa6a6422d6fa..b43f8e78f874 100644 --- a/basic/source/classes/propacc.cxx +++ b/basic/source/classes/propacc.cxx @@ -25,6 +25,7 @@ #include <sbunoobj.hxx> #include <comphelper/propertysetinfo.hxx> +#include <comphelper/sequence.hxx> #include <algorithm> #include <limits.h> @@ -164,10 +165,7 @@ void SbPropertyValues::removeVetoableChangeListener( Sequence< PropertyValue > SbPropertyValues::getPropertyValues() throw (css::uno::RuntimeException, std::exception) { - Sequence<PropertyValue> aRet( m_aPropVals.size() ); - for (size_t n = 0; n < m_aPropVals.size(); ++n) - aRet.getArray()[n] = m_aPropVals[n]; - return aRet; + return comphelper::containerToSequence(m_aPropVals); } |