summaryrefslogtreecommitdiffstats
path: root/src/gui/graphicsview/qgraphicsanchorlayout_p.h
diff options
context:
space:
mode:
authorCaio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>2009-11-06 18:26:36 (GMT)
committerCaio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>2009-11-06 22:30:22 (GMT)
commit20f6d4080af9945b957fe74520373c015fbdacbc (patch)
tree10c3cbdd92a92f6f3ba838859a87097a31249421 /src/gui/graphicsview/qgraphicsanchorlayout_p.h
parent81955cdea96a7d95eec8df32923273be4df573b2 (diff)
downloadQt-20f6d4080af9945b957fe74520373c015fbdacbc.zip
Qt-20f6d4080af9945b957fe74520373c015fbdacbc.tar.gz
Qt-20f6d4080af9945b957fe74520373c015fbdacbc.tar.bz2
QGAL: avoid passing Orientation for interpolation functions
Not all of the interpolation functions needed the orientation information, and the one that needs can look at the orientation of the anchor in the parameter. This simplified a little bit the function calls. Signed-off-by: Caio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>
Diffstat (limited to 'src/gui/graphicsview/qgraphicsanchorlayout_p.h')
-rw-r--r--src/gui/graphicsview/qgraphicsanchorlayout_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/graphicsview/qgraphicsanchorlayout_p.h b/src/gui/graphicsview/qgraphicsanchorlayout_p.h
index 3a22db0..3ef37f9 100644
--- a/src/gui/graphicsview/qgraphicsanchorlayout_p.h
+++ b/src/gui/graphicsview/qgraphicsanchorlayout_p.h
@@ -527,9 +527,9 @@ public:
void calculateVertexPositions(Orientation orientation);
void setupEdgesInterpolation(Orientation orientation);
- void interpolateEdge(AnchorVertex *base, AnchorData *edge, Orientation orientation);
- void interpolateSequentialEdges(SequentialAnchorData *edge, Orientation orientation);
- void interpolateParallelEdges(ParallelAnchorData *edge, Orientation orientation);
+ void interpolateEdge(AnchorVertex *base, AnchorData *edge);
+ void interpolateSequentialEdges(SequentialAnchorData *edge);
+ void interpolateParallelEdges(ParallelAnchorData *edge);
// Linear Programming solver methods
bool solveMinMax(const QList<QSimplexConstraint *> &constraints,