From: eap Date: Tue, 4 Oct 2011 14:01:58 +0000 (+0000) Subject: 0021275: EDF 1681 SMESH: Find the number of nodes of any group X-Git-Tag: V6_4_0a1~57 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=fe3063e74b8d8e7091401919c9c899f988949fcb;p=modules%2Fsmesh.git 0021275: EDF 1681 SMESH: Find the number of nodes of any group remove 100000 limit --- diff --git a/src/SMESH_I/SMESH_Group_i.cxx b/src/SMESH_I/SMESH_Group_i.cxx index e4a2b8405..2399b77fe 100644 --- a/src/SMESH_I/SMESH_Group_i.cxx +++ b/src/SMESH_I/SMESH_Group_i.cxx @@ -489,7 +489,7 @@ CORBA::Long SMESH_GroupBase_i::GetNumberOfNodes() CORBA::Boolean SMESH_GroupBase_i::IsNodeInfoAvailable() { - if ( GetType() == SMESH::NODE || Size() < 100000 ) + if ( GetType() == SMESH::NODE/* || Size() < 100000 */) return true; if ( SMESHDS_GroupBase* g = GetGroupDS()) return ( myNbNodes > -1 && g->GetTic() == myGroupDSTic);