Update for bug IPAL19784.

This commit is contained in:
skl 2008-05-29 05:11:32 +00:00
parent 5971357dfc
commit ce5a49c530
2 changed files with 3 additions and 3 deletions

View File

@ -2189,7 +2189,7 @@ void SMESHGUI_FilterDlg::SetSourceWg (QWidget* theWg)
// name : SMESHGUI_FilterDlg::SetGroupIds // name : SMESHGUI_FilterDlg::SetGroupIds
// Purpose : Set mesh // Purpose : Set mesh
//======================================================================= //=======================================================================
void SMESHGUI_FilterDlg::SetMesh (SMESH::SMESH_Mesh_ptr theMesh) void SMESHGUI_FilterDlg::SetMesh (SMESH::SMESH_Mesh_var theMesh)
{ {
myMesh = theMesh; myMesh = theMesh;
} }

View File

@ -239,7 +239,7 @@ public:
void Init (const int type); void Init (const int type);
void SetSelection(); void SetSelection();
void SetMesh (SMESH::SMESH_Mesh_ptr); void SetMesh (SMESH::SMESH_Mesh_var);
void SetSourceWg (QWidget*); void SetSourceWg (QWidget*);
static SMESH::Filter::Criterion createCriterion(); static SMESH::Filter::Criterion createCriterion();
@ -305,7 +305,7 @@ private:
SMESHGUI* mySMESHGUI; SMESHGUI* mySMESHGUI;
LightApp_SelectionMgr* mySelectionMgr; LightApp_SelectionMgr* mySelectionMgr;
SVTK_Selector* mySelector; SVTK_Selector* mySelector;
SMESH::SMESH_Mesh_ptr myMesh; SMESH::SMESH_Mesh_var myMesh;
QWidget* mySourceWg; QWidget* mySourceWg;
SALOME_DataMapOfIOMapOfInteger myIObjects; SALOME_DataMapOfIOMapOfInteger myIObjects;