Author: hanya
Date: Wed Jan  8 08:36:06 2014
New Revision: 1556463

URL: http://svn.apache.org/r1556463
Log:
#i118909# fix empty elements of return value in 
UICategoryDescription::getElementNames

Modified:
    openoffice/trunk/main/framework/source/uielement/uicommanddescription.cxx

Modified: 
openoffice/trunk/main/framework/source/uielement/uicommanddescription.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/framework/source/uielement/uicommanddescription.cxx?rev=1556463&r1=1556462&r2=1556463&view=diff
==============================================================================
--- openoffice/trunk/main/framework/source/uielement/uicommanddescription.cxx 
(original)
+++ openoffice/trunk/main/framework/source/uielement/uicommanddescription.cxx 
Wed Jan  8 08:36:06 2014
@@ -761,7 +761,7 @@ throw (::com::sun::star::uno::RuntimeExc
     ModuleToCommandFileMap::const_iterator pIter = 
m_aModuleToCommandFileMap.begin();
     while ( pIter != m_aModuleToCommandFileMap.end() )
     {
-        aSeq[n] = pIter->first;
+        aSeq[n++] = pIter->first;
         ++pIter;
     }
 


Reply via email to