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

index b6669370235dac5dcfa6f5508a69e2cc6caadded..e048497feed1b6e898a040677d15dd456fc9e1e8 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();
 }