From 676b3abe1aa9ab3af8efa5835469cbca0d8829ab Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 6 Oct 2013 16:50:45 +0100 Subject: CID#704124 wrong operator used, harmless though Change-Id: I029a8df204ea4faf16e801ff90cd715adfe8e713 --- svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svx') diff --git a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx index 4b7b3032567f..301acda9aaa1 100644 --- a/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx +++ b/svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.cxx @@ -817,7 +817,7 @@ IMPL_LINK_NOARG(ChineseDictionaryDialog, DeleteHdl) short ChineseDictionaryDialog::Execute() { 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 ; m_aCT_DictionaryToSimplified.refillFromDictionary( nTextConversionOptions ); -- cgit