Salome HOME
Update for bug IPAL19784.
authorskl <skl@opencascade.com>
Thu, 29 May 2008 05:11:32 +0000 (05:11 +0000)
committerskl <skl@opencascade.com>
Thu, 29 May 2008 05:11:32 +0000 (05:11 +0000)
src/SMESHGUI/SMESHGUI_FilterDlg.cxx
src/SMESHGUI/SMESHGUI_FilterDlg.h

index 8f5c642301a4c534d268de1b7bd6eb67abdfcc4e..5758ddf7bce7f91d89122b6145ac25b5af42e097 100755 (executable)
@@ -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;
 }
index 2cc71d94ae73bcf608e25ed31d37fe0d086ef102..1fec653b8afdc6dc4c4dfd0a353806a50e4ebed9 100755 (executable)
@@ -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;