]> git.sesse.net Git - kdenlive/commitdiff
Fix compilation with Qt 4.4
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Mon, 13 Apr 2009 21:15:23 +0000 (21:15 +0000)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Mon, 13 Apr 2009 21:15:23 +0000 (21:15 +0000)
svn path=/trunk/kdenlive/; revision=3294

src/geometryval.cpp

index 4ab9b458b583b36105c9d283e86e4488dc4ca6bc..0f5ff20f5b979952ef3b815c6492b7d3178438ba 100644 (file)
@@ -252,7 +252,7 @@ void Geometryval::slotResizeCustom()
     }
     int scale = m_paramRect->rect().width() * 100 / m_profile.width;
     bool ok;
-    scale =  QInputDialog::getInt(this, i18n("Resize..."), i18n("Scale"), scale, 1, 2147483647, 10, &ok);
+    scale =  QInputDialog::getInteger(this, i18n("Resize..."), i18n("Scale"), scale, 1, 2147483647, 10, &ok);
     if (!ok) return;
     m_paramRect->setRect(0, 0, m_profile.width * scale / 100, m_profile.height * scale / 100);
     slotUpdateTransitionProperties();