summaryrefslogtreecommitdiff
path: root/lingucomponent/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-03-04 14:25:52 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-03-06 07:56:50 +0100
commit7150ce717fb24893d5b527a0587cc166f7c6ec68 (patch)
treecdc20c9edde800641c19c819fdd178de8a3fb5a0 /lingucomponent/source
parent7cdcf1bea77190744d381fde8d62582c21d712ef (diff)
remove deprecated IsGermanPreReform property
deprecated in 2008 (and seemingly never even implemented) Replace the use of this property in sample code and in Java unit tests with another property (I arbitrarily selected "IsIgnoreControlCharacters") Change-Id: I2cb474f895ac221952b59e98bfdbc01012095519 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164355 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'lingucomponent/source')
-rw-r--r--lingucomponent/source/thesaurus/libnth/nthesdta.cxx4
-rw-r--r--lingucomponent/source/thesaurus/libnth/nthesdta.hxx5
2 files changed, 0 insertions, 9 deletions
diff --git a/lingucomponent/source/thesaurus/libnth/nthesdta.cxx b/lingucomponent/source/thesaurus/libnth/nthesdta.cxx
index 6d076d84841a..e69df4ab4c38 100644
--- a/lingucomponent/source/thesaurus/libnth/nthesdta.cxx
+++ b/lingucomponent/source/thesaurus/libnth/nthesdta.cxx
@@ -37,10 +37,6 @@ Meaning::Meaning(OUString _aTerm) :
aSyn ( Sequence< OUString >(1) ),
aTerm (std::move(_aTerm))
{
-#if 0
- // this is for future use by a german thesaurus when one exists
- bIsGermanPreReform = rHelper.IsGermanPreReform;
-#endif
}
Meaning::~Meaning()
diff --git a/lingucomponent/source/thesaurus/libnth/nthesdta.hxx b/lingucomponent/source/thesaurus/libnth/nthesdta.hxx
index fb2c6438d751..8c18542b6138 100644
--- a/lingucomponent/source/thesaurus/libnth/nthesdta.hxx
+++ b/lingucomponent/source/thesaurus/libnth/nthesdta.hxx
@@ -32,11 +32,6 @@ class Meaning :
css::uno::Sequence< OUString > aSyn; // list of synonyms, may be empty.
OUString aTerm;
-#if 0
- // this is for future use by a German thesaurus
- sal_Bool bIsGermanPreReform;
-#endif
-
Meaning(const Meaning &) = delete;
Meaning & operator = (const Meaning &) = delete;