From 945638c405766faca0e5f4c1611c00151c88a2ff Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 14 Jul 2015 19:12:46 +0200 Subject: [PATCH] Path: Fix a further warning --- src/Mod/Path/Gui/ViewProviderPath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/Gui/ViewProviderPath.cpp b/src/Mod/Path/Gui/ViewProviderPath.cpp index dadf6a09c..909a880e2 100644 --- a/src/Mod/Path/Gui/ViewProviderPath.cpp +++ b/src/Mod/Path/Gui/ViewProviderPath.cpp @@ -392,7 +392,7 @@ void ViewProviderPath::recomputeBoundingBox() Path::Feature* pcPathObj = static_cast(pcObject); Base::Placement pl = *(&pcPathObj->Placement.getValue()); Base::Vector3d pt; - for (unsigned int i=0;ipoint.getNum();i++) { + for (int i=0;ipoint.getNum();i++) { pt.x = pcLineCoords->point[i].getValue()[0]; pt.y = pcLineCoords->point[i].getValue()[1]; pt.z = pcLineCoords->point[i].getValue()[2];