From: eap Date: Fri, 28 Dec 2012 15:53:01 +0000 (+0000) Subject: typo X-Git-Tag: pluginMGCleaner~196 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=00ac0dfc368b1c0ec1f8b8404bd2c0048ba4f2aa;p=modules%2Fsmesh.git typo --- diff --git a/src/StdMeshers/StdMeshers_ProjectionUtils.hxx b/src/StdMeshers/StdMeshers_ProjectionUtils.hxx index 1d22b54b7..097b0ac11 100644 --- a/src/StdMeshers/StdMeshers_ProjectionUtils.hxx +++ b/src/StdMeshers/StdMeshers_ProjectionUtils.hxx @@ -53,13 +53,13 @@ struct StdMeshers_ShapeShapeBiDirectionMap { TopTools_DataMapOfShapeShape _map1to2, _map2to1; - // convension: s1 - target, s2 - source + // convention: s1 - target, s2 - source bool Bind( const TopoDS_Shape& s1, const TopoDS_Shape& s2 ) { _map1to2.Bind( s1, s2 ); return _map2to1.Bind( s2, s1 ); } bool IsBound( const TopoDS_Shape& s, const bool isShape2=false ) const { return (isShape2 ? _map2to1 : _map1to2).IsBound( s ); } bool IsEmpty() const { return _map1to2.IsEmpty(); } - int Extent() const { return _map1to2.Extent(); } + int Extent() const { return _map1to2.Extent(); } void Clear() { _map1to2.Clear(); _map2to1.Clear(); } const TopoDS_Shape& operator()( const TopoDS_Shape& s, const bool isShape2=false ) const { // if we get a Standard_NoSuchObject here, it means that the calling code