summaryrefslogtreecommitdiffstats
path: root/sw
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-03-31 22:09:24 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-02 16:37:20 +0000
commit6709d973db6be0d848bf28d1f5994a842f09058a (patch)
tree675e76189859f31c89a160ee0ec373609d1701c2 /sw
parentSFX_VISIBILITY_PLUGCLIENT, SERVER and RECORDING are unused (diff)
downloadcore-6709d973db6be0d848bf28d1f5994a842f09058a.tar.gz
core-6709d973db6be0d848bf28d1f5994a842f09058a.zip
coverity#704129: Operands don't affect result
Change-Id: I6faf86c3a41296ba4a267a58d7d0814e526b85a8 Reviewed-on: https://gerrit.libreoffice.org/3141 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/ui/index/cntex.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/index/cntex.cxx b/sw/source/ui/index/cntex.cxx
index 921f0bac1d28..a695b02cb2db 100644
--- a/sw/source/ui/index/cntex.cxx
+++ b/sw/source/ui/index/cntex.cxx
@@ -292,7 +292,7 @@ void SwMultiTOXTabDialog::CreateOrUpdateExample(
lcl_SetBOOLProp(xInfo, xIdxProps, UNO_NAME_CREATE_FROM_STAR_CHART, 0 != (nsSwTOOElements::TOO_CHART &nOLEOptions ));
lcl_SetBOOLProp(xInfo, xIdxProps, UNO_NAME_CREATE_FROM_STAR_CALC, 0 != (nsSwTOOElements::TOO_CALC &nOLEOptions ));
lcl_SetBOOLProp(xInfo, xIdxProps, UNO_NAME_CREATE_FROM_STAR_DRAW, 0 != (nsSwTOOElements::TOO_DRAW_IMPRESS&nOLEOptions));
- lcl_SetBOOLProp(xInfo, xIdxProps, UNO_NAME_CREATE_FROM_OTHER_EMBEDDED_OBJECTS, 0 != (nsSwTOOElements::TOO_OTHER|nOLEOptions ));
+ lcl_SetBOOLProp(xInfo, xIdxProps, UNO_NAME_CREATE_FROM_OTHER_EMBEDDED_OBJECTS, 0 != (nsSwTOOElements::TOO_OTHER & nOLEOptions));
}
const SwForm* pForm = GetForm(eCurrentTOXType);
if(bInitialCreate || !nPage || nPage == TOX_PAGE_ENTRY)