mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-12 17:50:34 +05:00
Change Handle(SMESHDS_Document) to SMESHDS_Document*
This commit is contained in:
parent
9227e93063
commit
17f94f16b7
@ -2823,7 +2823,7 @@ void SMESHGUI::Import_Mesh(QAD_Desktop* parent, int theCommandID)
|
||||
// Mesh_Reader* myReader = SMESHDriver::GetMeshReader(myExtension, myClass);
|
||||
|
||||
int myMeshId = (smeshGUI->myDocument)->NewMesh();
|
||||
Handle(SMDS_Mesh) myMesh = (smeshGUI->myDocument)->GetMesh(myMeshId);
|
||||
SMDS_Mesh* myMesh = (smeshGUI->myDocument)->GetMesh(myMeshId);
|
||||
|
||||
myReader->SetFile(string(filename.latin1()));
|
||||
myReader->SetMesh(myMesh);
|
||||
@ -2940,7 +2940,7 @@ void SMESHGUI::Import_Document(QAD_Desktop* parent, int theCommandID)
|
||||
QApplication::setOverrideCursor( Qt::waitCursor );
|
||||
string myClass = string("SMESHDS_Document");
|
||||
// Document_Reader* myReader = SMESHDriver::GetDocumentReader(myExtension, myClass);
|
||||
Handle(SMESHDS_Document) newDocument = new SMESHDS_Document(1);
|
||||
SMESHDS_Document* newDocument = new SMESHDS_Document(1);
|
||||
|
||||
myReader->SetFile(string(filename.latin1()));
|
||||
myReader->SetDocument(smeshGUI->myDocument);
|
||||
|
@ -88,7 +88,7 @@ private :
|
||||
|
||||
// vtkScalarBarActor* myScalarBar;
|
||||
|
||||
Handle_SMESHDS_Document myDocument;//NBU
|
||||
SMESHDS_Document * myDocument;//NBU
|
||||
|
||||
bool myAutomaticUpdate;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user