]> git.sesse.net Git - kdenlive/commitdiff
Fix compilation warning in my animationToGeometry().
authorDan Dennedy <dan@dennedy.org>
Fri, 3 Sep 2010 17:31:45 +0000 (17:31 +0000)
committerDan Dennedy <dan@dennedy.org>
Fri, 3 Sep 2010 17:31:45 +0000 (17:31 +0000)
svn path=/trunk/kdenlive/; revision=4827

src/slideshowclip.cpp

index 3938b029fe8147ed0fc13ffb1f7aa6144b96356a..10f4c25e3246faba8ec33ad6483135e2ed83e691 100644 (file)
@@ -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;
 }