editeng/source/misc/acorrcfg.cxx |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 0455f4c13c5e0d055c92f84c3e71aad32a062a35
Author:     Mike Kaganski <mike.kagan...@collabora.com>
AuthorDate: Mon Jan 22 12:08:56 2024 +0600
Commit:     Xisco Fauli <xiscofa...@libreoffice.org>
CommitDate: Tue Jan 23 00:26:18 2024 +0100

    tdf#159313: pass properties in correct order
    
    Regression after commit c4fc18308074634e9578ad12d94d937f259aa22a
    (Autocorrect: Add option for autoformat bulleted lists after space,
    2023-09-07).
    
    Change-Id: I35fafc1441b4f67886a86d4d67764a91146b8ece
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162359
    Tested-by: Jenkins
    Reviewed-by: Mike Kaganski <mike.kagan...@collabora.com>
    (cherry picked from commit ca33b8b35a10243dc13e68c93e7c7512eef937ec)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162289
    Reviewed-by: Michael Stahl <michael.st...@allotropia.de>
    Tested-by: Xisco Fauli <xiscofa...@libreoffice.org>

diff --git a/editeng/source/misc/acorrcfg.cxx b/editeng/source/misc/acorrcfg.cxx
index fcafbfca6f0c..616d75c69600 100644
--- a/editeng/source/misc/acorrcfg.cxx
+++ b/editeng/source/misc/acorrcfg.cxx
@@ -645,7 +645,6 @@ void SvxSwAutoCorrCfg::ImplCommit()
          css::uno::Any(rParent.bAutoFmtByInput), // "Format/ByInput/Enable"
          css::uno::Any(rSwFlags.bChgToEnEmDash), // "Format/ByInput/ChangeDash"
          css::uno::Any(rSwFlags.bSetNumRule),
-         css::uno::Any(rSwFlags.bSetNumRuleAfterSpace),
             // "Format/ByInput/ApplyNumbering/Enable"
          css::uno::Any(rSwFlags.bSetBorder), // 
"Format/ByInput/ChangeToBorders"
          css::uno::Any(rSwFlags.bCreateTable), // 
"Format/ByInput/ChangeToTable"
@@ -679,7 +678,9 @@ void SvxSwAutoCorrCfg::ImplCommit()
             // "Format/ByInput/ApplyNumbering/SpecialCharacter/FontCharset"
          css::uno::Any(sal_Int32(rSwFlags.aByInputBulletFont.GetPitch())),
             // "Format/ByInput/ApplyNumbering/SpecialCharacter/FontPitch"
-         css::uno::Any(rSwFlags.bSetDOIAttr)});
+         css::uno::Any(rSwFlags.bSetDOIAttr),
+         css::uno::Any(rSwFlags.bSetNumRuleAfterSpace), // 
"Format/ByInput/ApplyNumberingAfterSpace"
+        });
             // "Format/Option/SetDOIAttribute"
 }
 

Reply via email to