framework/source/uielement/uicommanddescription.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 396b3594feb735e1a9cd1564f28340d514f9d925
Author: Tsutomu Uchino <ha...@apache.org>
Date:   Wed Jan 8 08:36:06 2014 +0000

    Resolves: #i118909# fix empty elements of return value...
    
    in UICategoryDescription::getElementNames
    
    (cherry picked from commit e4eb014761df0bd5c88acbcee1935743cb2a04e0)
    
    Change-Id: Ib5a2e14ecb446c339afe5e53be435478845a4024

diff --git a/framework/source/uielement/uicommanddescription.cxx 
b/framework/source/uielement/uicommanddescription.cxx
index fb39ab5..9480d46 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;
     }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to