Kaydet (Commit) 676b3abe authored tarafından Caolán McNamara's avatar Caolán McNamara

CID#704124 wrong operator used, harmless though

Change-Id: I029a8df204ea4faf16e801ff90cd715adfe8e713
üst 43f7217f
...@@ -817,7 +817,7 @@ IMPL_LINK_NOARG(ChineseDictionaryDialog, DeleteHdl) ...@@ -817,7 +817,7 @@ IMPL_LINK_NOARG(ChineseDictionaryDialog, DeleteHdl)
short ChineseDictionaryDialog::Execute() short ChineseDictionaryDialog::Execute()
{ {
sal_Int32 nTextConversionOptions = m_nTextConversionOptions; sal_Int32 nTextConversionOptions = m_nTextConversionOptions;
if(m_nTextConversionOptions | i18n::TextConversionOption::USE_CHARACTER_VARIANTS ) if(m_nTextConversionOptions & i18n::TextConversionOption::USE_CHARACTER_VARIANTS )
nTextConversionOptions = nTextConversionOptions^i18n::TextConversionOption::USE_CHARACTER_VARIANTS ; nTextConversionOptions = nTextConversionOptions^i18n::TextConversionOption::USE_CHARACTER_VARIANTS ;
m_aCT_DictionaryToSimplified.refillFromDictionary( nTextConversionOptions ); m_aCT_DictionaryToSimplified.refillFromDictionary( nTextConversionOptions );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment