summaryrefslogtreecommitdiffstats
path: root/src/libvpsc/generate-constraints.cpp
diff options
context:
space:
mode:
authorMartin Owens <doctormo@gmail.com>2014-03-08 19:00:45 +0000
committerMartin Owens <doctormo@gmail.com>2014-03-08 19:00:45 +0000
commitb7b45eae8e4b5489a6342060782f7f2f82c1c500 (patch)
treee99ef6487e419b8518ac89039a5c3189f9f6b1cc /src/libvpsc/generate-constraints.cpp
parentFix crashes caused by the desktop's query_style signal being called before (diff)
downloadinkscape-b7b45eae8e4b5489a6342060782f7f2f82c1c500.tar.gz
inkscape-b7b45eae8e4b5489a6342060782f7f2f82c1c500.zip
Remove useless r variable and warning
(bzr r13130)
Diffstat (limited to 'src/libvpsc/generate-constraints.cpp')
-rw-r--r--src/libvpsc/generate-constraints.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/libvpsc/generate-constraints.cpp b/src/libvpsc/generate-constraints.cpp
index fabe5217f..288e7ed53 100644
--- a/src/libvpsc/generate-constraints.cpp
+++ b/src/libvpsc/generate-constraints.cpp
@@ -209,7 +209,6 @@ int generateXConstraints(const int n, Rectangle** rs, Variable** vars, Constrain
}
} else {
// Close event
- int r;
if(useNeighbourLists) {
for(NodeSet::iterator i=v->leftNeighbours->begin();
i!=v->leftNeighbours->end();i++
@@ -217,7 +216,7 @@ int generateXConstraints(const int n, Rectangle** rs, Variable** vars, Constrain
Node *u=*i;
double sep = (v->r->width()+u->r->width())/2.0;
constraints.push_back(new Constraint(u->v,v->v,sep));
- r=u->rightNeighbours->erase(v);
+ u->rightNeighbours->erase(v);
}
for(NodeSet::iterator i=v->rightNeighbours->begin();
@@ -226,22 +225,22 @@ int generateXConstraints(const int n, Rectangle** rs, Variable** vars, Constrain
Node *u=*i;
double sep = (v->r->width()+u->r->width())/2.0;
constraints.push_back(new Constraint(v->v,u->v,sep));
- r=u->leftNeighbours->erase(v);
+ u->leftNeighbours->erase(v);
}
} else {
Node *l=v->firstAbove, *r=v->firstBelow;
if(l!=NULL) {
double sep = (v->r->width()+l->r->width())/2.0;
constraints.push_back(new Constraint(l->v,v->v,sep));
- l->firstBelow=v->firstBelow;
+ l->firstBelow = v->firstBelow;
}
if(r!=NULL) {
double sep = (v->r->width()+r->r->width())/2.0;
constraints.push_back(new Constraint(v->v,r->v,sep));
- r->firstAbove=v->firstAbove;
+ r->firstAbove = v->firstAbove;
}
}
- r=scanline.erase(v);
+ scanline.erase(v);
delete v;
}
delete e;