X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESH%2FSMESH_Algo.hxx;fp=src%2FSMESH%2FSMESH_Algo.hxx;h=72c17b7f972d7de7360c7a492ec366cae927daa8;hb=9b08e00e6ab80e13cffcda319be3baf22a829bcf;hp=6b5b4904ab5ed734b62e6e5041a9585106026931;hpb=a9f7e28cba695e50fcae50a483ae37f32af4ce84;p=modules%2Fsmesh.git diff --git a/src/SMESH/SMESH_Algo.hxx b/src/SMESH/SMESH_Algo.hxx index 6b5b4904a..72c17b7f9 100644 --- a/src/SMESH/SMESH_Algo.hxx +++ b/src/SMESH/SMESH_Algo.hxx @@ -173,7 +173,7 @@ class SMESH_EXPORT SMESH_Algo : public SMESH_Hypothesis * else, returns OK if at least one shape is OK * \retval bool - \c true by default */ - virtual bool IsApplicableToShape(const TopoDS_Shape & /*shape*/, bool /*toCheckAll*/) const; + virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool toCheckAll) const; /*! * \brief Sets _computeCanceled to true. It's usage depends on @@ -480,7 +480,7 @@ public: * else, returns OK if at least one shape is OK * \retval bool - \c true by default */ - virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool /*toCheckAll*/) const; + virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool toCheckAll) const; }; class SMESH_EXPORT SMESH_2D_Algo: public SMESH_Algo @@ -494,7 +494,7 @@ public: * else, returns OK if at least one shape is OK * \retval bool - \c true by default */ - virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool /*toCheckAll*/) const; + virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool toCheckAll) const; /*! * \brief Method in which an algorithm generating a structured mesh * fixes positions of in-face nodes after there movement @@ -515,7 +515,7 @@ public: * else, returns OK if at least one shape is OK * \retval bool - \c true by default */ - virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool /*toCheckAll*/) const; + virtual bool IsApplicableToShape(const TopoDS_Shape & shape, bool toCheckAll) const; }; #endif