diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-02-02 16:46:29 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-02-02 18:31:34 +0000 |
commit | 537a8de72b935a406e6154a8cc55040ed521741e (patch) | |
tree | 2ad9b67e29e0f44da0ed20753801eefce8a6fce1 /linguistic | |
parent | 09c3a0aa13e7c4719a73728c2f9ba1f66cea7572 (diff) |
Remove redundant attributes that were added to published XLinguProperties
...by 57d79744c77eef96b4c2bd3b16e0a04317ffcf9e "tdf#136306 offapi linguistic:
add options to disable rule-based compounding". See
<https://lists.freedesktop.org/archives/libreoffice/2023-January/089784.html>
"Re: Request for [API CHANGE] in spell checking: add new options to disable
rule-based compounding" for details. (And I want to get
offapi/type_reference/offapi.idl back into a clean state before updating the
reference rdbs, which I want to do now that LO 7.5.0 has been released, so I'm
taking over here.)
Change-Id: I75d0ccdfdf644421e22c95de5db3267e8872a09d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146505
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/source/lngopt.hxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/linguistic/source/lngopt.hxx b/linguistic/source/lngopt.hxx index 08dde49e117c..896e345edb74 100644 --- a/linguistic/source/lngopt.hxx +++ b/linguistic/source/lngopt.hxx @@ -124,14 +124,6 @@ public: { return getPropertyBool(UPN_IS_SPELL_CAPITALIZATION); } virtual void SAL_CALL setIsSpellCapitalization(sal_Bool p1) override { setProperty(UPN_IS_SPELL_CAPITALIZATION, static_cast<bool>(p1)); } - virtual sal_Bool SAL_CALL getIsSpellClosedCompound() override - { return getPropertyBool(UPN_IS_SPELL_CLOSED_COMPOUND); } - virtual void SAL_CALL setIsSpellClosedCompound(sal_Bool p1) override - { setProperty(UPN_IS_SPELL_CLOSED_COMPOUND, static_cast<bool>(p1)); } - virtual sal_Bool SAL_CALL getIsSpellHyphenatedCompound() override - { return getPropertyBool(UPN_IS_SPELL_HYPHENATED_COMPOUND); } - virtual void SAL_CALL setIsSpellHyphenatedCompound(sal_Bool p1) override - { setProperty(UPN_IS_SPELL_HYPHENATED_COMPOUND, static_cast<bool>(p1)); } virtual sal_Int16 SAL_CALL getHyphMinLeading() override { return getPropertyInt16(UPN_HYPH_MIN_LEADING); } virtual void SAL_CALL setHyphMinLeading(sal_Int16 p1) override |