diff options
author | Eike Rathke <erack@redhat.com> | 2018-03-07 21:29:09 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2018-03-07 21:29:59 +0100 |
commit | 71bf07922b6ff45f9b31fb377d3ac24e172a5c65 (patch) | |
tree | 54008b3b0fd403fedbf43505ef655f9ddf82ed08 /offapi | |
parent | f2a8f440bf2e8ad9ad0d595d1ab0cecf08de4a5c (diff) |
Clarify that IGNORE_DIACRITICS_CTL is not only CTL, despite its name
Change-Id: I5954094131debb7cdf0fc44a9db3a3609b356baf
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/i18n/TransliterationModulesExtra.idl | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/offapi/com/sun/star/i18n/TransliterationModulesExtra.idl b/offapi/com/sun/star/i18n/TransliterationModulesExtra.idl index be82cf74821a..5a67714ba640 100644 --- a/offapi/com/sun/star/i18n/TransliterationModulesExtra.idl +++ b/offapi/com/sun/star/i18n/TransliterationModulesExtra.idl @@ -50,8 +50,17 @@ constants TransliterationModulesExtra */ const short TOGGLE_CASE = 202; - /// because we cannot extend TransliterationModule we used TranslationModuleExtra and it will act the same way + /** Ignore diacritics. Despite the _CTL name suffix this is not only + about CTL/Arabic diacritic characters, though these are handled + as well, but the transliteration decomposes and removes any + diacritic from characters. + + Because we cannot extend the TransliterationModules enum we use + TranslationModuleExtra and it will act the same way. + */ const long IGNORE_DIACRITICS_CTL = 0x40000000; + + /** Ignore Kashida mark. */ const long IGNORE_KASHIDA_CTL = 0x00000800; const long END_OF_MODULE = 0; |