summaryrefslogtreecommitdiff
path: root/xmloff/source/forms/eventexport.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/forms/eventexport.cxx')
-rw-r--r--xmloff/source/forms/eventexport.cxx11
1 files changed, 2 insertions, 9 deletions
diff --git a/xmloff/source/forms/eventexport.cxx b/xmloff/source/forms/eventexport.cxx
index e26ed665ceec..57b995cd33f4 100644
--- a/xmloff/source/forms/eventexport.cxx
+++ b/xmloff/source/forms/eventexport.cxx
@@ -21,6 +21,7 @@
#include <osl/diagnose.h>
#include "strings.hxx"
#include <tools/debug.hxx>
+#include <comphelper/sequence.hxx>
namespace xmloff
{
@@ -106,15 +107,7 @@ namespace xmloff
Sequence< OUString > SAL_CALL OEventDescriptorMapper::getElementNames( ) throw(RuntimeException, std::exception)
{
- Sequence< OUString > aReturn(m_aMappedEvents.size());
- OUString* pReturn = aReturn.getArray();
- for ( MapString2PropertyValueSequence::const_iterator aCollect = m_aMappedEvents.begin();
- aCollect != m_aMappedEvents.end();
- ++aCollect, ++pReturn
- )
- *pReturn = aCollect->first;
-
- return aReturn;
+ return comphelper::mapKeysToSequence(m_aMappedEvents);
}
sal_Bool SAL_CALL OEventDescriptorMapper::hasByName( const OUString& _rName ) throw(RuntimeException, std::exception)