Skip to content

Commit

Permalink
Path: Fix a further warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Jul 14, 2015
1 parent e6621ea commit 945638c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Path/Gui/ViewProviderPath.cpp
Expand Up @@ -392,7 +392,7 @@ void ViewProviderPath::recomputeBoundingBox()
Path::Feature* pcPathObj = static_cast<Path::Feature*>(pcObject);
Base::Placement pl = *(&pcPathObj->Placement.getValue());
Base::Vector3d pt;
for (unsigned int i=0;i<pcLineCoords->point.getNum();i++) {
for (int i=0;i<pcLineCoords->point.getNum();i++) {
pt.x = pcLineCoords->point[i].getValue()[0];
pt.y = pcLineCoords->point[i].getValue()[1];
pt.z = pcLineCoords->point[i].getValue()[2];
Expand Down

0 comments on commit 945638c

Please sign in to comment.