]> git.sesse.net Git - kdenlive/commitdiff
Fix detection of MLT's avformat module
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Tue, 30 Sep 2008 20:15:48 +0000 (20:15 +0000)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Tue, 30 Sep 2008 20:15:48 +0000 (20:15 +0000)
svn path=/branches/KDE4/; revision=2418

src/wizard.cpp

index 74c6c98b145826dc4dd428bafbc7b3de5ec1462e..48261ed2cea1b7eface6f32428ed9c33720308cc 100644 (file)
@@ -203,7 +203,7 @@ void Wizard::slotCheckMlt() {
     checkProcess.waitForFinished();
 
     QByteArray result = checkProcess.readAllStandardError();
-    if (!result.contains("avformat")) errorMessage.append(i18n("MLT's avformat (FFMPEG) module not found. Please check your FFMPEG and MLT install. Kdenlive will not work until this issue is fixed.\n"));
+    if (!result.contains("avformat")) errorMessage.append(i18n("MLT's avformat (FFMPEG) module not found. Please check your FFMPEG and MLT install. Kdenlive will not work until this issue is fixed.\n"));
 
     QProcess checkProcess2;
     checkProcess2.start(KdenliveSettings::rendererpath(), QStringList() << "-query" << "consumer");