diff options
author | Tsutomu Uchino <hanya@apache.org> | 2014-01-08 08:36:06 +0000 |
---|---|---|
committer | Tsutomu Uchino <hanya@apache.org> | 2014-01-08 08:36:06 +0000 |
commit | e4eb014761df0bd5c88acbcee1935743cb2a04e0 (patch) | |
tree | 1fd521fce59350d58baaa165d2b9c2173f4f1e63 /framework | |
parent | 3acdfc0f4c1f30c9030361e51c13d19556ea816f (diff) |
#i118909# fix empty elements of return value in UICategoryDescription::getElementNames
Notes
Notes:
merged as: 396b3594feb735e1a9cd1564f28340d514f9d925
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/uielement/uicommanddescription.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/uielement/uicommanddescription.cxx b/framework/source/uielement/uicommanddescription.cxx index 6e66113afed5..dbd9b8e5b569 100644 --- a/framework/source/uielement/uicommanddescription.cxx +++ b/framework/source/uielement/uicommanddescription.cxx @@ -761,7 +761,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; } |