diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-15 09:05:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-15 09:05:03 +0100 |
commit | 2c6f5a5b683dd77017f16725479ae27cea3bd72d (patch) | |
tree | 354e851a4d1381bcdf77f773ab8ce4a5edf69f95 /i18npool/qa | |
parent | ac37cb32df769c669d51639b12e6a45dc3962cf7 (diff) |
More loplugin:cstylecast: i18npool
Change-Id: Iafdc3593b7136f24e741dc63e3c46344636154eb
Diffstat (limited to 'i18npool/qa')
-rw-r--r-- | i18npool/qa/cppunit/test_textsearch.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/qa/cppunit/test_textsearch.cxx b/i18npool/qa/cppunit/test_textsearch.cxx index af58b89c354b..18fd1d9079a6 100644 --- a/i18npool/qa/cppunit/test_textsearch.cxx +++ b/i18npool/qa/cppunit/test_textsearch.cxx @@ -149,7 +149,7 @@ void TestTextSearch::testWildcardSearch() aOptions.WildcardEscapeCharacter = '~'; // aOptions.searchFlag = ::css::util::SearchFlags::WILD_MATCH_SELECTION; // is not set, so substring match is allowed. - aOptions.transliterateFlags = (sal_Int32)::css::i18n::TransliterationModules::TransliterationModules_IGNORE_CASE; + aOptions.transliterateFlags = sal_Int32(::css::i18n::TransliterationModules::TransliterationModules_IGNORE_CASE); aText = "abAca"; aOptions.searchString = "a"; |