From 58291a269165dc802473ed09846474b7e009d511 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Mardelle Date: Sun, 17 Oct 2010 22:23:38 +0000 Subject: [PATCH] Fix compilation svn path=/trunk/kdenlive/; revision=5020 --- src/recmonitor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/recmonitor.cpp b/src/recmonitor.cpp index b5dac160..bb1115ec 100644 --- a/src/recmonitor.cpp +++ b/src/recmonitor.cpp @@ -60,7 +60,7 @@ RecMonitor::RecMonitor(QString name, QWidget *parent) : device_selector->setCurrentIndex(KdenliveSettings::defaultcapture()); connect(device_selector, SIGNAL(currentIndexChanged(int)), this, SLOT(slotVideoDeviceChanged(int))); - QToolBar *toolbar = new QToolBar(name, this); + QToolBar *toolbar = new QToolBar(this); QHBoxLayout *layout = new QHBoxLayout; layout->setContentsMargins(0, 0, 0, 0); m_playIcon = KIcon("media-playback-start"); @@ -274,7 +274,7 @@ void RecMonitor::createHDMIDevice() //video_capture->setVisible(true); if (m_bmCapture == NULL) { QVBoxLayout *lay = new QVBoxLayout; - m_bmCapture = new CaptureHandler(lay); + m_bmCapture = new BmdCaptureHandler(lay); connect(m_bmCapture, SIGNAL(gotTimeCode(ulong)), this, SLOT(slotGotHDMIFrameNumber(ulong))); connect(m_bmCapture, SIGNAL(gotMessage(const QString &)), this, SLOT(slotGotHDMIMessage(const QString &))); video_capture->setLayout(lay); -- 2.39.2