X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Frecmonitor.cpp;h=299c98a788f0534c2a3e18ad449a9f14edbf95d3;hb=70ebf67bae6316df767bf9f15d52f9fc72bc9d88;hp=2439dc2ed15f608592f7158b6f10692d78b1fa0e;hpb=ee413438056f8ae7c77bb435d3222713cd317fa4;p=kdenlive diff --git a/src/recmonitor.cpp b/src/recmonitor.cpp index 2439dc2e..299c98a7 100644 --- a/src/recmonitor.cpp +++ b/src/recmonitor.cpp @@ -280,7 +280,7 @@ void RecMonitor::slotVideoDeviceChanged(int ix) if (!KdenliveSettings::ffmpegpath().isEmpty()) { if (!Render::checkX11Grab()) { // FFmpeg does not support screen grab - showWarningMessage(i18n("Your FFmpeg / Libav installation\n does not support screen grab"), "dialog-warning"); + showWarningMessage(i18n("Your FFmpeg / Libav installation\n does not support screen grab")); m_recAction->setEnabled(false); } else video_frame->setPixmap(mergeSideBySide(KIcon("video-display").pixmap(QSize(50, 50)), i18n("Press record button\nto start screen capture\nFiles will be saved in:\n%1", m_capturePath))); @@ -612,7 +612,7 @@ void RecMonitor::slotRecord() while (QFile::exists(path)) { QString num = QString::number(i).rightJustified(4, '0', false); path = KUrl(m_capturePath).path(KUrl::AddTrailingSlash) + "capture" + num + '.' + extension; - i++; + ++i; } m_captureFile = KUrl(path); @@ -810,7 +810,7 @@ void RecMonitor::showWarningMessage(const QString &text, bool logAction) } else { video_frame->setText(QString("" + text + "
" + i18n("Show log") + "")); - connect(video_frame, SIGNAL(linkActivated (const QString &)), this, SLOT(slotShowLog())); + connect(video_frame, SIGNAL(linkActivated(QString)), this, SLOT(slotShowLog())); } #endif }