diff --git a/src/3rdParty/salomesmesh/src/Controls/SMESH_Controls.cpp b/src/3rdParty/salomesmesh/src/Controls/SMESH_Controls.cpp index 0362bed52..43387020e 100644 --- a/src/3rdParty/salomesmesh/src/Controls/SMESH_Controls.cpp +++ b/src/3rdParty/salomesmesh/src/Controls/SMESH_Controls.cpp @@ -2399,9 +2399,10 @@ bool LogicalOR::IsSatisfy( long theId ) { return (myPredicate1!=NULL) && - (myPredicate2!=NULL) && - myPredicate1->IsSatisfy( theId ) || - myPredicate2->IsSatisfy( theId ); + (myPredicate2!=NULL) && ( + myPredicate1->IsSatisfy( theId ) || + myPredicate2->IsSatisfy( theId ) + ); }