summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorTsutomu Uchino <hanya@apache.org>2014-01-08 08:36:06 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-08 10:33:20 +0000
commit396b3594feb735e1a9cd1564f28340d514f9d925 (patch)
treea414466cfcffa60cd080a00fd98bb184ed4bbca0 /framework
parent55e5c0faafbc3c4f503722000912ec7a022d98db (diff)
Resolves: #i118909# fix empty elements of return value...
in UICategoryDescription::getElementNames (cherry picked from commit e4eb014761df0bd5c88acbcee1935743cb2a04e0) Change-Id: Ib5a2e14ecb446c339afe5e53be435478845a4024
Diffstat (limited to 'framework')
-rw-r--r--framework/source/uielement/uicommanddescription.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/uielement/uicommanddescription.cxx b/framework/source/uielement/uicommanddescription.cxx
index fb39ab5f4200..9480d46233c5 100644
--- a/framework/source/uielement/uicommanddescription.cxx
+++ b/framework/source/uielement/uicommanddescription.cxx
@@ -735,7 +735,7 @@ throw (::com::sun::star::uno::RuntimeException)
ModuleToCommandFileMap::const_iterator pIter = m_aModuleToCommandFileMap.begin();
while ( pIter != m_aModuleToCommandFileMap.end() )
{
- aSeq[n] = pIter->first;
+ aSeq[n++] = pIter->first;
++pIter;
}