]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
DCQ : GetIORFromString bug correction
authoryfr <yfr@opencascade.com>
Wed, 24 Sep 2003 07:33:22 +0000 (07:33 +0000)
committeryfr <yfr@opencascade.com>
Wed, 24 Sep 2003 07:33:22 +0000 (07:33 +0000)
src/GEOM/GEOM_Gen_i.cc

index c8460ca504ba2485b45b7bb15db78e470decaa48..4bc0f4dbf3cdf82533e02a37d4e76ffb8b34bc5d 100644 (file)
@@ -762,7 +762,7 @@ const char* GEOM_Gen_i::GetStringFromIOR(GEOM::GEOM_Shape_var shapeIOR) {
 //=================================================================================
 GEOM::GEOM_Shape_ptr GEOM_Gen_i::GetIORFromString(const char* stringIOR) {
   GEOM::GEOM_Shape_var shapeIOR =  GEOM::GEOM_Shape::_narrow(_orb->string_to_object(stringIOR)) ;
-  return shapeIOR ;
+  return shapeIOR._retn();
 }