int SMESHGUI_PreVisualObj::GetNbEntities( const SMDSAbs_ElementType theType ) const
{
- myMesh->GetMeshInfo().NbElements( theType );
+ return myMesh->GetMeshInfo().NbElements( theType );
}
SMESH::SMESH_Mesh_ptr SMESHGUI_PreVisualObj::GetMeshServer()
QListWidgetItem * item = new QListWidgetItem( icon, groupText, ListCoincident );
item->setData( GROUP_COLOR, groupColor );
- item->setData( GROUP_INDEX, i );
+ item->setData( GROUP_INDEX, (long)i );
}
}
myBusy = false;
TCollection_AsciiString _pyCommand::GetIndentation()
{
int end = 1;
- while ( end <= Length() && isblank( myString.Value( end )))
+ //while ( end <= Length() && isblank( myString.Value( end )))
+ //ANA: isblank() function isn't provided in VC2010 compiler
+ while ( end <= Length() && ( myString.Value( end ) == ' ' || myString.Value( end ) == '\t') )
++end;
return ( end == 1 ) ? _AString("") : myString.SubString( 1, end - 1 );
}