Log in FemMesh view provider and some warnings fixed
This commit is contained in:
@@ -488,7 +488,7 @@ void CmdPartDesignFillet::activated(int iMsg)
|
||||
|
||||
std::vector<std::string> SubNames = std::vector<std::string>(selection[0].getSubNames());
|
||||
|
||||
int i = 0;
|
||||
unsigned int i = 0;
|
||||
|
||||
while(i < SubNames.size())
|
||||
{
|
||||
@@ -635,7 +635,7 @@ void CmdPartDesignChamfer::activated(int iMsg)
|
||||
|
||||
std::vector<std::string> SubNames = std::vector<std::string>(selection[0].getSubNames());
|
||||
|
||||
int i = 0;
|
||||
unsigned int i = 0;
|
||||
|
||||
while(i < SubNames.size())
|
||||
{
|
||||
@@ -775,7 +775,7 @@ void CmdPartDesignDraft::activated(int iMsg)
|
||||
}
|
||||
|
||||
std::vector<std::string> SubNames = std::vector<std::string>(selection[0].getSubNames());
|
||||
int i = 0;
|
||||
unsigned int i = 0;
|
||||
|
||||
while(i < SubNames.size())
|
||||
{
|
||||
|
||||
@@ -370,7 +370,7 @@ void ViewProviderTransformed::recomputeFeature(void)
|
||||
|
||||
std::list<gp_Trsf> rejected_trsf = pcTransformed->getRejectedTransformations();
|
||||
std::list<gp_Trsf>::const_iterator trsf = rejected_trsf.begin();
|
||||
for (int i=0; i < rejected; i++,trsf++) {
|
||||
for (unsigned int i=0; i < rejected; i++,trsf++) {
|
||||
Base::Matrix4D mat;
|
||||
Part::TopoShape::convertToMatrix(*trsf,mat);
|
||||
mats[i] = convert(mat);
|
||||
|
||||
Reference in New Issue
Block a user