diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-04-28 14:30:46 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-04-28 14:30:46 +0000 |
commit | e5d4ae83f1f1205e145a374a40f2abf4214526b0 (patch) | |
tree | 4e074bfd1907640c31e592c19023964f5d710612 /sc/inc/global.hxx | |
parent | 49aff7c0fd5c7211c7e3af10d5700ff053616a0f (diff) |
INTEGRATION: CWS apps61beta2 (1.21.2.1.40); FILE MERGED
2003/04/07 14:19:00 er 1.21.2.1.40.1: #107998# Don't ignore Width and Kana in transliteration
Diffstat (limited to 'sc/inc/global.hxx')
-rw-r--r-- | sc/inc/global.hxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx index 3d9e888470e7..415cf2a6cf6e 100644 --- a/sc/inc/global.hxx +++ b/sc/inc/global.hxx @@ -2,9 +2,9 @@ * * $RCSfile: global.hxx,v $ * - * $Revision: 1.22 $ + * $Revision: 1.23 $ * - * last change: $Author: hr $ $Date: 2003-03-26 18:03:35 $ + * last change: $Author: hr $ $Date: 2003-04-28 15:30:46 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -106,6 +106,9 @@ extern "C" { #define SC_COLLATOR_IGNORES ( \ ::com::sun::star::i18n::CollatorOptions::CollatorOptions_IGNORE_CASE ) #endif +#if 0 +// #107998# Don't ignore Width and Kana. The issue was mainly with AutoInput, +// but affects also comparison of names in general. #define SC_TRANSLITERATION_IGNORECASE ( \ ::com::sun::star::i18n::TransliterationModules_IGNORE_CASE | \ ::com::sun::star::i18n::TransliterationModules_IGNORE_KANA | \ @@ -113,6 +116,11 @@ extern "C" { #define SC_TRANSLITERATION_CASESENSE ( \ ::com::sun::star::i18n::TransliterationModules_IGNORE_KANA | \ ::com::sun::star::i18n::TransliterationModules_IGNORE_WIDTH ) +#else +#define SC_TRANSLITERATION_IGNORECASE ( \ + ::com::sun::star::i18n::TransliterationModules_IGNORE_CASE ) +#define SC_TRANSLITERATION_CASESENSE 0 +#endif //------------------------------------------------------------------------ |