From: mzn Date: Wed, 2 Mar 2005 07:45:32 +0000 (+0000) Subject: Fix for PAL8269(One can't select a pointer on geometry in mesh filters). X-Git-Tag: T_3_0_0_a1~31 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;ds=inline;h=6fae6dddb4668825724fe4f126b48e352df0c18d;p=modules%2Fsmesh.git Fix for PAL8269(One can't select a pointer on geometry in mesh filters). --- diff --git a/src/SMESHGUI/SMESHGUI_FilterDlg.cxx b/src/SMESHGUI/SMESHGUI_FilterDlg.cxx index 5eda1bc93..62a04bb74 100755 --- a/src/SMESHGUI/SMESHGUI_FilterDlg.cxx +++ b/src/SMESHGUI/SMESHGUI_FilterDlg.cxx @@ -2443,7 +2443,7 @@ void SMESHGUI_FilterDlg::onSelectionDone() Handle(SALOME_InteractiveObject) anIO = mySelection->firstIObject() ; GEOM::GEOM_Object_var anObj = SMESH::IObjectToInterface( anIO ) ; if ( !anObj->_is_nil() ) - myTable->SetThreshold( aRow, anIO->getName() ); + myTable->SetThreshold( aRow, GEOMBase::GetName(anObj) ); } //=======================================================================