From 37f5c2650df855a1221effe267580760f0b682a0 Mon Sep 17 00:00:00 2001 From: Dan Dennedy Date: Fri, 3 Sep 2010 17:31:45 +0000 Subject: [PATCH] Fix compilation warning in my animationToGeometry(). svn path=/trunk/kdenlive/; revision=4827 --- src/slideshowclip.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/slideshowclip.cpp b/src/slideshowclip.cpp index 3938b029..10f4c25e 100644 --- a/src/slideshowclip.cpp +++ b/src/slideshowclip.cpp @@ -440,8 +440,7 @@ QString SlideshowClip::animationToGeometry(const QString &animation, int &ttl) ttl-1, ttl, ttl*2 - 1, ttl*2, ttl*3 - 1, ttl*3, ttl*4 - 1 ); ttl *= 4; } else if (animation.startsWith("Zoom")) { - geometry = QString().sprintf("0=0,0:100%%x100%%;%d=-14%%,-14%%:120%%x120%%", - ttl-1, ttl ); + geometry = QString().sprintf("0=0,0:100%%x100%%;%d=-14%%,-14%%:120%%x120%%", ttl-1 ); } return geometry; } -- 2.39.2