summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/lpe-tool.cpp
diff options
context:
space:
mode:
authorKris De Gussem <kris.degussem@gmail.com>2015-11-05 21:27:44 +0000
committerKris De Gussem <Kris.De.Gussem@hotmail.com>2015-11-05 21:27:44 +0000
commit23935ad410a79d6f82e0ce90e5efba32a55cda4c (patch)
treed1dfc28f98e02c2204a5adabc7aacb60856bb370 /src/ui/tools/lpe-tool.cpp
parentAdd missing file to POTFILES.in (diff)
downloadinkscape-23935ad410a79d6f82e0ce90e5efba32a55cda4c.tar.gz
inkscape-23935ad410a79d6f82e0ce90e5efba32a55cda4c.zip
static code analysis
(bzr r14446)
Diffstat (limited to 'src/ui/tools/lpe-tool.cpp')
-rw-r--r--src/ui/tools/lpe-tool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/tools/lpe-tool.cpp b/src/ui/tools/lpe-tool.cpp
index 13e47f3a6..9bbc1ac20 100644
--- a/src/ui/tools/lpe-tool.cpp
+++ b/src/ui/tools/lpe-tool.cpp
@@ -397,7 +397,7 @@ lpetool_create_measuring_items(LpeTool *lc, Inkscape::Selection *selection)
gchar *arc_length;
double lengthval;
std::vector<SPItem*> items=selection->itemList();
- for(std::vector<SPItem*>::const_iterator i=items.begin();i!=items.end();i++){
+ for(std::vector<SPItem*>::const_iterator i=items.begin();i!=items.end();++i){
if (SP_IS_PATH(*i)) {
path = SP_PATH(*i);
curve = path->getCurve();