summaryrefslogtreecommitdiff
path: root/include/linguistic/lngprophelp.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-03-01 11:43:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-03-04 08:01:05 +0100
commitea4dfeb83889d5dc955646999e4b2b06693e631b (patch)
tree5ef210ad116e073884fae3c861b46d5209d033ff /include/linguistic/lngprophelp.hxx
parent88c6e127b3b9d2c80bb3cf04e74c4152ddfe9674 (diff)
finish removing IsSpellCapitalisation property
which was partially removed in commit 9bb9ba6ae02692e65498bae4598e3b63bb65c02e Author: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de> Date: Mon Oct 2 12:33:34 2023 +0200 [API CHANGE] Remove deprecated IsSpellCapitalization Change-Id: I861c8c484b77a041d91cb25ddeecb7027a2fd96c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164183 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/linguistic/lngprophelp.hxx')
-rw-r--r--include/linguistic/lngprophelp.hxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linguistic/lngprophelp.hxx b/include/linguistic/lngprophelp.hxx
index a3ad3d2665ac..6b06d5cd9628 100644
--- a/include/linguistic/lngprophelp.hxx
+++ b/include/linguistic/lngprophelp.hxx
@@ -165,14 +165,12 @@ class UNLESS_MERGELIBS(LNG_DLLPUBLIC) PropertyHelper_Spell final :
// default values
bool bIsSpellUpperCase;
bool bIsSpellWithDigits;
- bool bIsSpellCapitalization;
bool bIsSpellClosedCompound;
bool bIsSpellHyphenatedCompound;
// return values, will be set to default value or current temporary value
bool bResIsSpellUpperCase;
bool bResIsSpellWithDigits;
- bool bResIsSpellCapitalization;
bool bResIsSpellClosedCompound;
bool bResIsSpellHyphenatedCompound;
@@ -199,7 +197,6 @@ public:
bool IsSpellUpperCase() const { return bResIsSpellUpperCase; }
bool IsSpellWithDigits() const { return bResIsSpellWithDigits; }
- bool IsSpellCapitalization() const { return bResIsSpellCapitalization; }
bool IsSpellClosedCompound() const { return bResIsSpellClosedCompound; }
bool IsSpellHyphenatedCompound() const { return bResIsSpellHyphenatedCompound; }
};