mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-29 23:10:32 +05:00
Fix a problem with not initialized class member.
This commit is contained in:
parent
4c00d99625
commit
e3994c67d1
@ -46,8 +46,9 @@ using namespace std;
|
|||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
SMESHDS_Mesh::SMESHDS_Mesh(int theMeshID, bool theIsEmbeddedMode):
|
SMESHDS_Mesh::SMESHDS_Mesh(int theMeshID, bool theIsEmbeddedMode):
|
||||||
|
myMeshID(theMeshID),
|
||||||
myIsEmbeddedMode(theIsEmbeddedMode),
|
myIsEmbeddedMode(theIsEmbeddedMode),
|
||||||
myMeshID(theMeshID)
|
myCurSubID(-1)
|
||||||
{
|
{
|
||||||
myScript = new SMESHDS_Script(theIsEmbeddedMode);
|
myScript = new SMESHDS_Script(theIsEmbeddedMode);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user