cui/source/dialogs/SpellDialog.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bfe8263b6d4ebfe11f380fb5f87d07f127a67f9a
Author:     Michael Weghorn <m.wegh...@posteo.de>
AuthorDate: Thu Mar 17 08:26:59 2022 +0100
Commit:     Xisco Fauli <xiscofa...@libreoffice.org>
CommitDate: Mon Mar 21 17:44:54 2022 +0100

    Call corresponding base class method in SpellDialog::Deactivate
    
    At a quick glance, the fact that `SpellDialog::Deactivate`
    previously did the same as `SpellDialog::Activate` looks
    like a copy-paste mistake; both were added in
    
        commit 5261417cbb3051b812164838d19c0f748573df45
        Date:   Fri Jun 14 21:56:44 2019 +0100
    
            weld SpellDialog
    
    Change-Id: Ib06d19e46470141d5bfcfc7e790160c1879b6a00
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131598
    Tested-by: Jenkins
    Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org>
    (cherry picked from commit 5aa42d256fa5081d79da3eb21ddd8000d7b6cc1c)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131861

diff --git a/cui/source/dialogs/SpellDialog.cxx 
b/cui/source/dialogs/SpellDialog.cxx
index 7b17b25e71f2..02f1fc85212f 100644
--- a/cui/source/dialogs/SpellDialog.cxx
+++ b/cui/source/dialogs/SpellDialog.cxx
@@ -945,7 +945,7 @@ void SpellDialog::Activate()
 
 void SpellDialog::Deactivate()
 {
-    SfxModelessDialogController::Activate();
+    SfxModelessDialogController::Deactivate();
     ToplevelFocusChanged();
 }
 

Reply via email to