From: Jean-Baptiste Mardelle Date: Mon, 13 Apr 2009 21:15:23 +0000 (+0000) Subject: Fix compilation with Qt 4.4 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f98ed21b846aad8ee982e0f108170c2d6cc4d950;p=kdenlive Fix compilation with Qt 4.4 svn path=/trunk/kdenlive/; revision=3294 --- diff --git a/src/geometryval.cpp b/src/geometryval.cpp index 4ab9b458..0f5ff20f 100644 --- a/src/geometryval.cpp +++ b/src/geometryval.cpp @@ -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();