X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGEOMImpl%2FGEOMImpl_IShapesOperations.cxx;fp=src%2FGEOMImpl%2FGEOMImpl_IShapesOperations.cxx;h=e95f3880b49741ec1a0f0ddff0a0f6fbfe0077a6;hb=888b3b52e179ae1505352d56ba63477275693919;hp=878b5bad8bcfcc7803d7d010487336bdc7e62b85;hpb=66be812a4e054626003ed898e018cb375aeffd5f;p=modules%2Fgeom.git diff --git a/src/GEOMImpl/GEOMImpl_IShapesOperations.cxx b/src/GEOMImpl/GEOMImpl_IShapesOperations.cxx index 878b5bad8..e95f3880b 100644 --- a/src/GEOMImpl/GEOMImpl_IShapesOperations.cxx +++ b/src/GEOMImpl/GEOMImpl_IShapesOperations.cxx @@ -1846,7 +1846,7 @@ Standard_Integer GEOMImpl_IShapesOperations::GetSubShapeIndex (Handle(GEOM_Objec Handle(TColStd_HSequenceOfInteger) GEOMImpl_IShapesOperations::GetSubShapesIndices (Handle(GEOM_Object) theMainShape, std::list theSubShapes) { - MESSAGE("GEOMImpl_IShapesOperations::GetSubShapesIndices") + MESSAGE("GEOMImpl_IShapesOperations::GetSubShapesIndices"); SetErrorCode(KO); Handle(TColStd_HSequenceOfInteger) aSeq = new TColStd_HSequenceOfInteger; @@ -1854,7 +1854,7 @@ Handle(TColStd_HSequenceOfInteger) GEOMImpl_IShapesOperations::GetSubShapesIndic TopoDS_Shape aMainShape = theMainShape->GetValue(); if (aMainShape.IsNull()) { - MESSAGE("NULL main shape") + MESSAGE("NULL main shape"); return NULL; } @@ -1867,7 +1867,7 @@ Handle(TColStd_HSequenceOfInteger) GEOMImpl_IShapesOperations::GetSubShapesIndic TopoDS_Shape aSubShape = (*it)->GetValue(); if (aSubShape.IsNull()) { - MESSAGE("NULL subshape") + MESSAGE("NULL subshape"); return NULL; } int id = anIndices.FindIndex(aSubShape);