]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Corrections for bug IPAL12999. V3_2_1
authorskl <skl@opencascade.com>
Thu, 20 Jul 2006 07:05:38 +0000 (07:05 +0000)
committerskl <skl@opencascade.com>
Thu, 20 Jul 2006 07:05:38 +0000 (07:05 +0000)
src/GEOM/GEOM_Object.cxx

index ecb9f84a39aa896c6825e2c23b81a27f831fa99d..e36ddc9095ecb5c3ccbaf5c2f9e49a1673b8d3d2 100644 (file)
@@ -272,10 +272,7 @@ bool GEOM_Object::IsMainShape()
 Handle(GEOM_Function) GEOM_Object::AddFunction(const Standard_GUID& theGUID, int theFunctionType)
 {
   Standard_Integer nb = GetNbFunctions();
-
-  //if(nb == 1 && theGUID == GetSubShapeID()) return NULL; //It's impossible to add a function to sub shape
-  // change by skl (+srn) for IPAL12999
-  if(nb == 1 && GetFunction(1)->GetDriverGUID() == GetSubShapeID()) return NULL; //It's impossible to add a function to sub shape
+  if(nb == 1 && theGUID == GetSubShapeID()) return NULL; //It's impossible to add a function to sub shape
   nb++;
   TDF_Label aChild = FUNCTION_LABEL(nb);