summaryrefslogtreecommitdiff
path: root/unotools/source/i18n/transliterationwrapper.cxx
diff options
context:
space:
mode:
authorThomas Lange [tl] <tl@openoffice.org>2010-01-11 12:02:18 +0100
committerThomas Lange [tl] <tl@openoffice.org>2010-01-11 12:02:18 +0100
commit70e22566b64a3cb76a7e5ed8187ee642e9ee9ace (patch)
tree5023e809b9cb6a3b6294968719e7954f811e410b /unotools/source/i18n/transliterationwrapper.cxx
parentb9af4e970fa589f901fb12366e6714054f77cdd2 (diff)
cws tl74: warning-free code
Diffstat (limited to 'unotools/source/i18n/transliterationwrapper.cxx')
-rw-r--r--unotools/source/i18n/transliterationwrapper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unotools/source/i18n/transliterationwrapper.cxx b/unotools/source/i18n/transliterationwrapper.cxx
index 0ee160aaefa4..b93161b4f860 100644
--- a/unotools/source/i18n/transliterationwrapper.cxx
+++ b/unotools/source/i18n/transliterationwrapper.cxx
@@ -152,9 +152,9 @@ sal_Bool TransliterationWrapper::needLanguageForTheMode() const
return TransliterationModules_UPPERCASE_LOWERCASE == nType ||
TransliterationModules_LOWERCASE_UPPERCASE == nType ||
TransliterationModules_IGNORE_CASE == nType ||
- TransliterationModulesExtra::SENTENCE_CASE == nType ||
- TransliterationModulesExtra::TITLE_CASE == nType ||
- TransliterationModulesExtra::TOGGLE_CASE == nType;
+ (sal_uInt32) TransliterationModulesExtra::SENTENCE_CASE == (sal_uInt32) nType ||
+ (sal_uInt32) TransliterationModulesExtra::TITLE_CASE == (sal_uInt32) nType ||
+ (sal_uInt32) TransliterationModulesExtra::TOGGLE_CASE == (sal_uInt32) nType;
}