diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-10 18:35:03 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-11 08:41:09 +0200 |
commit | f699e7b9b22961cc401868e22eeb90c215a8832f (patch) | |
tree | f8724d7acfaec108e9c9676e6c09e4b0aede9d04 /unotools | |
parent | 578cd010f504e4261c908c5bfbb46e035e22397f (diff) |
Use valid UNOIDL identifiers in TransliterationModulesExtra
ignoreDiacritics_CTL was introduced in LO 4.2, but is unpublished and appears to
be rarely used, so changing it is hopefully OK.
ignoreKashida_CTL is new in LO 4.3.
Change-Id: I52c6d1e8c6b30eec4af22e3bbc72dd5874ef7151
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/searchopt.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/config/searchopt.cxx b/unotools/source/config/searchopt.cxx index 5a9e6d608478..76490942f505 100644 --- a/unotools/source/config/searchopt.cxx +++ b/unotools/source/config/searchopt.cxx @@ -287,9 +287,9 @@ sal_Int32 SvtSearchOptions::GetTransliterationFlags() const if ( IsIgnoreMiddleDot()) nRes |= TransliterationModules_ignoreMiddleDot_ja_JP; if ( IsIgnoreDiacritics_CTL()) - nRes |= TransliterationModulesExtra::ignoreDiacritics_CTL; + nRes |= TransliterationModulesExtra::IGNORE_DIACRITICS_CTL; if ( IsIgnoreKashida_CTL()) - nRes |= TransliterationModulesExtra::ignoreKashida_CTL; + nRes |= TransliterationModulesExtra::IGNORE_KASHIDA_CTL; return nRes; } |