mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-25 09:10:33 +05:00
Compilation error in SMESHGUI_ExtrusionAlongPathDlg
This commit is contained in:
parent
c511644fda
commit
01fd9fd76a
@ -99,7 +99,7 @@ void SMESH_Group::SetName (const char* theName)
|
|||||||
|
|
||||||
//================================================================================
|
//================================================================================
|
||||||
/*!
|
/*!
|
||||||
* \brief Return group ID. It is negative if no SMESHDS_GroupBase exist
|
* \brief Return persistent group ID. It is negative if no SMESHDS_GroupBase exist
|
||||||
*/
|
*/
|
||||||
//================================================================================
|
//================================================================================
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ class SMESH_EXPORT SMESH_Group
|
|||||||
|
|
||||||
SMESHDS_GroupBase * GetGroupDS () { return myGroupDS; }
|
SMESHDS_GroupBase * GetGroupDS () { return myGroupDS; }
|
||||||
|
|
||||||
int GetID() const;
|
int GetID() const; // persistent ID
|
||||||
|
|
||||||
private:
|
private:
|
||||||
SMESH_Group (const SMESH_Group& theOther);
|
SMESH_Group (const SMESH_Group& theOther);
|
||||||
|
@ -1056,7 +1056,7 @@ bool SMESHGUI_ExtrusionAlongPathDlg::isValuesValid()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
SMESH::long_array_var elems = mesh->GetNodeInverseElements( aNodeStart );
|
SMESH::long_array_var elems = mesh->GetNodeInverseElements( aNodeStart, SMESH::ALL );
|
||||||
if ( elems->length() != 1 ||
|
if ( elems->length() != 1 ||
|
||||||
mesh->GetElementType( elems[0], true ) != SMESH::EDGE )
|
mesh->GetElementType( elems[0], true ) != SMESH::EDGE )
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user