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

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Thu Oct 29 20:22:19 UTC 2020


 cui/source/options/treeopt.cxx |   13 ++++---------
 1 file changed, 4 insertions(+), 9 deletions(-)

New commits:
commit bdd9ccc3f1a0db9345ad0a0109aa8b65405650ab
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Oct 29 16:01:02 2020 +0000
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Oct 29 21:21:41 2020 +0100

    move block for RET_OK conditional return into Ok handler
    
    making it clearer what happens on "ok", no logic change intended
    
    Change-Id: I1d57500d2fbeded4cd7c7fd48fd1f4296b78e41d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105018
    Tested-by: Caolán McNamara <caolanm at redhat.com>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/cui/source/options/treeopt.cxx b/cui/source/options/treeopt.cxx
index 8ec8a0b3d252..5cb3fde4677b 100644
--- a/cui/source/options/treeopt.cxx
+++ b/cui/source/options/treeopt.cxx
@@ -738,6 +738,9 @@ IMPL_LINK_NOARG(OfaTreeOptionsDialog, OKHdl_Impl, weld::Button&, void)
         ::svtools::executeRestartDialog(comphelper::getProcessComponentContext(),
                                         m_pParent, eRestartReason);
     }
+
+    ApplyItemSets();
+    utl::ConfigManager::storeConfigItems();
 }
 
 void OfaTreeOptionsDialog::ApplyItemSets()
@@ -1932,15 +1935,7 @@ short OfaTreeOptionsDialog::run()
         pClamp.reset( new SvxDicListChgClamp( xDictionaryList ) );
     }
 
-    short nRet = SfxOkDialogController::run();
-
-    if( RET_OK == nRet )
-    {
-        ApplyItemSets();
-        utl::ConfigManager::storeConfigItems();
-    }
-
-    return nRet;
+    return SfxOkDialogController::run();
 }
 
 // class ExtensionsTabPage -----------------------------------------------


More information about the Libreoffice-commits mailing list