]> git.sesse.net Git - kdenlive/blobdiff - src/abstractclipitem.cpp
[PATCH by Ray Lehtiniem] Delete some unused variables
[kdenlive] / src / abstractclipitem.cpp
index 7cff160189e56142abe2dd101d050e8a8d5799ea..5270a1d5f8a38dda02d79636110c4a2869c7f0f1 100644 (file)
@@ -191,7 +191,6 @@ QPainterPath AbstractClipItem::upperRectPart(QRectF br) {
     int br_startx = (int)(br.x() + offset);
     int br_starty = (int)(br.y());
     int br_halfy = (int)(br.y() + br.height() / 2 - offset);
-    int br_endy = (int)(br.y() + br.height());
 
     roundRectPathUpper.moveTo(br_endx  , br_halfy);
     roundRectPathUpper.arcTo(br_endx - roundingX , br_starty , roundingX, roundingY, 0.0, 90.0);
@@ -210,7 +209,6 @@ QPainterPath AbstractClipItem::lowerRectPart(QRectF br) {
 
     int br_endx = (int)(br.x() + br .width() - offset);
     int br_startx = (int)(br.x() + offset);
-    int br_starty = (int)(br.y());
     int br_halfy = (int)(br.y() + br.height() / 2 - offset);
     int br_endy = (int)(br.y() + br.height() - 1);