From: yfr Date: Wed, 24 Sep 2003 07:46:47 +0000 (+0000) Subject: DCQ : GetIORFromString bug correction X-Git-Tag: DCQ_03_12_03~22 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=6a8533739917f3562d730acc798144358c1d474a;p=modules%2Fgeom.git DCQ : GetIORFromString bug correction --- diff --git a/src/GEOM/GEOM_Gen_i.cc b/src/GEOM/GEOM_Gen_i.cc index b66693702..e048497fe 100644 --- a/src/GEOM/GEOM_Gen_i.cc +++ b/src/GEOM/GEOM_Gen_i.cc @@ -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(); }