]> git.sesse.net Git - kdenlive/blobdiff - src/wizard.cpp
const'ify
[kdenlive] / src / wizard.cpp
index 218cbaceb808000fd5c3b123dcfc202d6f2088e0..a66a0ec10b65a6ccf8e6b12a4ddeb056700c9099 100644 (file)
@@ -49,7 +49,7 @@
 // Recommended MLT version
 const int mltVersionMajor = 0;
 const int mltVersionMinor = 8;
-const int mltVersionRevision = 0;
+const int mltVersionRevision = 8;
 
 static const char kdenlive_version[] = VERSION;
 
@@ -470,7 +470,7 @@ void Wizard::checkMissingCodecs()
         infoMessage->setWordWrap(true);
        infoMessage->setMessageType(KMessageWidget::Warning);
 #if KDE_IS_VERSION(4,10,0)
-       connect(infoMessage, SIGNAL(linkActivated (const QString &)), this, SLOT(slotOpenManual()));
+       connect(infoMessage, SIGNAL(linkActivated(QString)), this, SLOT(slotOpenManual()));
        infoMessage->setText(missing);
 #else
        // clickable text in kmessagewidget only available since KDE 4.10
@@ -484,7 +484,7 @@ void Wizard::checkMissingCodecs()
         infoMessage->animatedShow();
 #else
        m_welcomeLabel->setText(m_welcomeLabel->text() + "<br><hr />" + missing);
-       connect(m_welcomeLabel, SIGNAL(linkActivated (const QString &)), this, SLOT(slotOpenManual()));
+       connect(m_welcomeLabel, SIGNAL(linkActivated(QString)), this, SLOT(slotOpenManual()));
 #endif
     }
     
@@ -497,7 +497,7 @@ void Wizard::slotCheckPrograms()
     m_check.programList->setIconSize(QSize(24, 24));
 
     QTreeWidgetItem *item = new QTreeWidgetItem(m_check.programList, QStringList() << QString() << i18n("FFmpeg & ffplay"));
-    item->setData(1, Qt::UserRole, i18n("Required for webcam capture"));
+    item->setData(1, Qt::UserRole, i18n("Required for proxy clips, transcoding and screen capture"));
     item->setSizeHint(0, itemSize);
     QString exepath = KStandardDirs::findExe("ffmpeg");
     QString playpath = KStandardDirs::findExe("ffplay");
@@ -516,12 +516,6 @@ void Wizard::slotCheckPrograms()
     if (!playpath.isEmpty()) KdenliveSettings::setFfplaypath(playpath);
 
 #ifndef Q_WS_MAC
-    item = new QTreeWidgetItem(m_check.programList, QStringList() << QString() << i18n("recordmydesktop"));
-    item->setData(1, Qt::UserRole, i18n("Required for screen capture"));
-    item->setSizeHint(0, itemSize);
-    if (KStandardDirs::findExe("recordmydesktop").isEmpty()) item->setIcon(0, m_badIcon);
-    else item->setIcon(0, m_okIcon);
-
     item = new QTreeWidgetItem(m_check.programList, QStringList() << QString() << i18n("dvgrab"));
     item->setData(1, Qt::UserRole, i18n("Required for firewire capture"));
     item->setSizeHint(0, itemSize);