From: jfa Date: Fri, 12 Aug 2005 07:24:51 +0000 (+0000) Subject: Improve CheckShape function X-Git-Tag: T2_2_5a~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=99c070e74a610ce004dbd463d0b5824c0e73811a;p=modules%2Fgeom.git Improve CheckShape function --- diff --git a/src/GEOM_I/GEOM_IMeasureOperations_i.cc b/src/GEOM_I/GEOM_IMeasureOperations_i.cc index eebc5a86b..a716fdbb9 100644 --- a/src/GEOM_I/GEOM_IMeasureOperations_i.cc +++ b/src/GEOM_I/GEOM_IMeasureOperations_i.cc @@ -183,29 +183,29 @@ CORBA::Boolean GEOM_IMeasureOperations_i::CheckShape (GEOM::GEOM_Object_ptr theS GetOperations()->SetNotDone(); if (theShape == NULL) - { - theDescription = CORBA::string_dup("null"); - return 0; - } + { + theDescription = CORBA::string_dup("null"); + return 0; + } //Get the reference shape Handle(GEOM_Object) aShape = GetOperations()->GetEngine()->GetObject (theShape->GetStudyID(), theShape->GetEntry()); if (aShape.IsNull()) - { - theDescription = CORBA::string_dup("null2"); - return 0; - } + { + theDescription = CORBA::string_dup("null2"); + return 0; + } // Get shape parameters TCollection_AsciiString aDump; if (GetOperations()->CheckShape(aShape, aDump)) - { - theDescription = CORBA::string_dup(aDump.ToCString()); - return 1; - } - theDescription = CORBA::string_dup("checkShape 0"); + { + theDescription = CORBA::string_dup("OK"); + return 1; + } + theDescription = CORBA::string_dup(aDump.ToCString()); return 0; }