diff options
Diffstat (limited to 'graphics/pencil/files/patch-src-graphics-vector-beziercurve.cpp')
-rw-r--r-- | graphics/pencil/files/patch-src-graphics-vector-beziercurve.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/graphics/pencil/files/patch-src-graphics-vector-beziercurve.cpp b/graphics/pencil/files/patch-src-graphics-vector-beziercurve.cpp deleted file mode 100644 index dfa9bd0d0347..000000000000 --- a/graphics/pencil/files/patch-src-graphics-vector-beziercurve.cpp +++ /dev/null @@ -1,15 +0,0 @@ ---- src/graphics/vector/beziercurve.cpp.orig 2013-06-26 10:46:07.000000000 +0200 -+++ src/graphics/vector/beziercurve.cpp 2013-06-26 10:40:02.000000000 +0200 -@@ -700,9 +700,9 @@ - R1.setTopLeft(P1); R1.setBottomRight(Q1); - R2.setTopLeft(P2); R2.setBottomRight(Q2); - -- //QPointF intersectionPoint = QPointF(50.0, 50.0); // bogus point -- //QPointF* intersection = &intersectionPoint; -- QPointF* cubicIntersection = &QPointF(50.0, 50.0); // bogus point -+ QPointF tmpIntersectionPoint = QPointF(50.0, 50.0); // bogus point -+ QPointF* cubicIntersection = &tmpIntersectionPoint; -+ //QPointF* cubicIntersection = &QPointF(50.0, 50.0); // bogus point - if( R1.intersects(R2) || L2.intersect(L1, cubicIntersection) == QLineF::BoundedIntersection ) { - //if(L2.intersect(L1, intersection) == QLineF::BoundedIntersection) { - //qDebug() << " FOUND rectangle intersection "; |