Salome HOME
Fix for #19201: Can't select a SHAPER result to create a group on geometry
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_GroupDlg.cxx
index 5d33b479330ba498ca5f06d6402549de7428ce96..21b33c443b7e5022196c3a44633009fa7374f4a0 100644 (file)
@@ -1402,9 +1402,11 @@ void SMESHGUI_GroupDlg::onObjectSelectionChanged()
       SALOME_ListIteratorOfListIO anIt (aList);
       for (; anIt.More(); anIt.Next())
       {
-        aGeomGroup = GEOMBase::ConvertIOinGEOMObject(anIt.Value());
-
+        CORBA::Object_var aGroupObj = SMESH::IObjectToObject(anIt.Value());
+        if (CORBA::is_nil(aGroupObj))
+          continue;
         // Check if the object is a geometry group
+        aGeomGroup = GEOM::GEOM_Object::_narrow(aGroupObj);
         if (CORBA::is_nil(aGeomGroup))
           continue;