mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-15 11:00:37 +05:00
Windows compatibility
This commit is contained in:
parent
512d3547bc
commit
7c362c7041
@ -59,7 +59,7 @@ int SMESHGUI_PreVisualObj::GetElemDimension( const int theObjId )
|
|||||||
|
|
||||||
int SMESHGUI_PreVisualObj::GetNbEntities( const SMDSAbs_ElementType theType ) const
|
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()
|
SMESH::SMESH_Mesh_ptr SMESHGUI_PreVisualObj::GetMeshServer()
|
||||||
|
@ -907,7 +907,7 @@ void SMESHGUI_SewingDlg::onDetectClicked()
|
|||||||
|
|
||||||
QListWidgetItem * item = new QListWidgetItem( icon, groupText, ListCoincident );
|
QListWidgetItem * item = new QListWidgetItem( icon, groupText, ListCoincident );
|
||||||
item->setData( GROUP_COLOR, groupColor );
|
item->setData( GROUP_COLOR, groupColor );
|
||||||
item->setData( GROUP_INDEX, i );
|
item->setData( GROUP_INDEX, (long)i );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
myBusy = false;
|
myBusy = false;
|
||||||
|
@ -3585,7 +3585,9 @@ void _pyCommand::SetBegPos( int thePartIndex, int thePosition )
|
|||||||
TCollection_AsciiString _pyCommand::GetIndentation()
|
TCollection_AsciiString _pyCommand::GetIndentation()
|
||||||
{
|
{
|
||||||
int end = 1;
|
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;
|
++end;
|
||||||
return ( end == 1 ) ? _AString("") : myString.SubString( 1, end - 1 );
|
return ( end == 1 ) ? _AString("") : myString.SubString( 1, end - 1 );
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user