[Libreoffice-commits] core.git: framework/source

Tsutomu Uchino hanya at apache.org
Wed Jan 8 02:34:27 PST 2014


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

New commits:
commit 396b3594feb735e1a9cd1564f28340d514f9d925
Author: Tsutomu Uchino <hanya at 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;
     }
 


More information about the Libreoffice-commits mailing list