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

Muhammet Kara muhammet.kara at pardus.org.tr
Fri Aug 11 13:45:03 UTC 2017


 cui/source/customize/cfgutil.cxx |   12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

New commits:
commit 114d3b369ae765ce106ffebfeac4498598b6c6b7
Author: Muhammet Kara <muhammet.kara at pardus.org.tr>
Date:   Fri Aug 11 12:36:52 2017 +0300

    Remove useless if check
    
    And the return in the default case, which could cause the UI element to
    stop updating
    
    Change-Id: I29d35818b015f71890f615a02ea215034c048326
    Reviewed-on: https://gerrit.libreoffice.org/41020
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Katarina Behrens <Katarina.Behrens at cib.de>

diff --git a/cui/source/customize/cfgutil.cxx b/cui/source/customize/cfgutil.cxx
index f69f184afed9..3c409e182ed2 100644
--- a/cui/source/customize/cfgutil.cxx
+++ b/cui/source/customize/cfgutil.cxx
@@ -865,14 +865,6 @@ void SfxConfigGroupListBox::GroupSelected()
     SfxGroupInfo_Impl *pInfo = static_cast<SfxGroupInfo_Impl*>(pEntry->GetUserData());
     pFunctionListBox->SetUpdateMode(false);
     pFunctionListBox->ClearAll();
-    if ( pInfo->nKind != SfxCfgKind::GROUP_FUNCTION &&
-         pInfo->nKind != SfxCfgKind::GROUP_ALLFUNCTIONS &&
-             pInfo->nKind != SfxCfgKind::GROUP_SCRIPTCONTAINER &&
-             pInfo->nKind != SfxCfgKind::GROUP_STYLES )
-    {
-        pFunctionListBox->SetUpdateMode(true);
-        return;
-    }
 
     switch ( pInfo->nKind )
     {
@@ -994,7 +986,9 @@ void SfxConfigGroupListBox::GroupSelected()
         }
 
         default:
-            return;
+            // Do nothing, the list box will stay empty
+            SAL_INFO( "cui.customize", "Ignoring unexpected SfxCfgKind: " <<  static_cast<int>(pInfo->nKind) );
+            break;
     }
 
     if ( pFunctionListBox->GetEntryCount() )


More information about the Libreoffice-commits mailing list