]> git.sesse.net Git - kdenlive/commitdiff
fix a typo and set mlt 0.4.0 as the minimum version supported
authorAlberto Villa <avilla@FreeBSD.org>
Thu, 4 Jun 2009 16:17:20 +0000 (16:17 +0000)
committerAlberto Villa <avilla@FreeBSD.org>
Thu, 4 Jun 2009 16:17:20 +0000 (16:17 +0000)
svn path=/trunk/kdenlive/; revision=3489

src/wizard.cpp

index 9e10697350b999dbffbb5ecccbddf4ed948d363f..f8942a795f82e398585334100071d2a562bcf999 100644 (file)
@@ -194,7 +194,7 @@ void Wizard::checkMltComponents()
                     mltVersion = mltVersion.section(' ', -1).simplified();
                     version = 100 * mltVersion.section('.', 0, 0).toInt() + 10 * mltVersion.section('.', 1, 1).toInt() + mltVersion.section('.', 2, 2).toInt();
                     kDebug() << "// FOUND MLT version: " << version;
-                    if (version > 34) recentMlt = true;
+                    if (version >= 40) recentMlt = true;
                 }
             }
 
@@ -499,7 +499,7 @@ void Wizard::slotCheckMlt()
 {
     QString errorMessage;
     if (KdenliveSettings::rendererpath().isEmpty()) {
-        errorMessage.append(i18n("your MLT installation cannot be found. Install MLT and restart Kdenlive.\n"));
+        errorMessage.append(i18n("Your MLT installation cannot be found. Install MLT and restart Kdenlive.\n"));
     }
     /*QProcess checkProcess;
     checkProcess.start(KdenliveSettings::rendererpath(), QStringList() << "-query" << "producer");