Compilation error in SMESHGUI_ExtrusionAlongPathDlg

This commit is contained in:
eap 2019-01-17 18:21:35 +03:00
parent c511644fda
commit 01fd9fd76a
3 changed files with 3 additions and 3 deletions

View File

@ -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
*/ */
//================================================================================ //================================================================================

View File

@ -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);

View File

@ -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;