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

László Németh (via logerrit) logerrit at kemper.freedesktop.org
Sat Jun 27 07:12:17 UTC 2020


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

New commits:
commit 076c95b27bf0e9be1fa1c077674cf974b22210fd
Author:     László Németh <nemeth at numbertext.org>
AuthorDate: Fri Jun 26 22:13:26 2020 +0200
Commit:     László Németh <nemeth at numbertext.org>
CommitDate: Sat Jun 27 09:11:42 2020 +0200

    AutoCorrect: fix redundant loading
    
    of new localized options added by
    commit da64ec8c8a91db6a6ec9657898f081d5ee67e739
    (tdf#133589 AutoCorrect: transliterate to Old Hungarian)
    and commit 77b213890a96d144d9cfacdfd35ac0bba68b9f7a
    (tdf#133524 add option to angle quote AutoCorrect)
    
    Change-Id: I39f97cfc5a9deb7cbe92d175b2e59ba2ab8a2707
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97266
    Tested-by: Jenkins
    Reviewed-by: László Németh <nemeth at numbertext.org>

diff --git a/editeng/source/misc/acorrcfg.cxx b/editeng/source/misc/acorrcfg.cxx
index 03d238953b10..aa08f4196664 100644
--- a/editeng/source/misc/acorrcfg.cxx
+++ b/editeng/source/misc/acorrcfg.cxx
@@ -340,10 +340,8 @@ Sequence<OUString>  SvxSwAutoCorrCfg::GetPropertyNames()
         "Format/ByInput/ApplyNumbering/SpecialCharacter/FontFamily",    //44
         "Format/ByInput/ApplyNumbering/SpecialCharacter/FontCharset",   //45
         "Format/ByInput/ApplyNumbering/SpecialCharacter/FontPitch",     //46
-        "Format/Option/TransliterateRTL",                               //47
-        "Format/Option/ChangeAngleQuotes"                               //48
     };
-    const int nCount = 49;
+    const int nCount = 47;
     Sequence<OUString> aNames(nCount);
     OUString* pNames = aNames.getArray();
     for(int i = 0; i < nCount; i++)
@@ -493,8 +491,6 @@ void SvxSwAutoCorrCfg::Load(bool bInit)
                     rSwFlags.aByInputBulletFont.SetPitch(FontPitch(nVal));
                 }
                 break;// "Format/ByInput/ApplyNumbering/SpecialCharacter/FontPitch",
-                case 47 : rSwFlags.bTransliterateRTL = *o3tl::doAccess<bool>(pValues[nProp]); break; // "Format/Option/TransliterateRTL",
-                case 48 : rSwFlags.bChgAngleQuotes = *o3tl::doAccess<bool>(pValues[nProp]); break; // "Format/Option/ChangeAngleQuotes",
             }
         }
     }
@@ -596,11 +592,8 @@ void SvxSwAutoCorrCfg::ImplCommit()
             // "Format/ByInput/ApplyNumbering/SpecialCharacter/FontFamily"
          css::uno::Any(sal_Int32(rSwFlags.aByInputBulletFont.GetCharSet())),
             // "Format/ByInput/ApplyNumbering/SpecialCharacter/FontCharset"
-         css::uno::Any(sal_Int32(rSwFlags.aByInputBulletFont.GetPitch())),
+         css::uno::Any(sal_Int32(rSwFlags.aByInputBulletFont.GetPitch()))});
             // "Format/ByInput/ApplyNumbering/SpecialCharacter/FontPitch"
-         css::uno::Any(rSwFlags.bTransliterateRTL)});
-            // "Format/Option/TransliterateRTL"
-
 }
 
 void SvxSwAutoCorrCfg::Notify( const Sequence<OUString>& /* aPropertyNames */ )


More information about the Libreoffice-commits mailing list