Author: hdu
Date: Tue Mar  5 10:16:43 2013
New Revision: 1452716

URL: http://svn.apache.org/r1452716
Log:
fix miscarried bitwise-or in WW8FormulaCheckBox's lcl_AddToPropertyContainer() 
helper

Modified:
    openoffice/trunk/main/sw/source/filter/ww8/ww8par3.cxx

Modified: openoffice/trunk/main/sw/source/filter/ww8/ww8par3.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/sw/source/filter/ww8/ww8par3.cxx?rev=1452716&r1=1452715&r2=1452716&view=diff
==============================================================================
--- openoffice/trunk/main/sw/source/filter/ww8/ww8par3.cxx (original)
+++ openoffice/trunk/main/sw/source/filter/ww8/ww8par3.cxx Tue Mar  5 10:16:43 
2013
@@ -2586,7 +2586,7 @@ static void lcl_AddToPropertyContainer
         uno::Any aAny(C2U(""));
         xPropContainer->addProperty
             (rPropertyName,
-             static_cast<sal_Int16>(beans::PropertyAttribute::BOUND ||
+             static_cast<sal_Int16>(beans::PropertyAttribute::BOUND |
                                     beans::PropertyAttribute::REMOVABLE),
              aAny);
     }


Reply via email to