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
// Purpose : Set mesh
//=======================================================================
void SMESHGUI_FilterDlg::SetMesh (SMESH::SMESH_Mesh_ptr theMesh)
void SMESHGUI_FilterDlg::SetMesh (SMESH::SMESH_Mesh_var theMesh)
{
myMesh = theMesh;
}

View File

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