]> git.sesse.net Git - kdenlive/blobdiff - src/scopes/scopemanager.cpp
normalize signal/slots
[kdenlive] / src / scopes / scopemanager.cpp
index 5782927f73835893a9cc35dde17fc59fe69bc464..a2e1dfd0103404ee824f8ba10f376d702d24f6e6 100644 (file)
@@ -207,8 +207,8 @@ void ScopeManager::slotUpdateActiveRenderer()
 
     // Connect new renderer
     if (m_lastConnectedRenderer != NULL) {
-        b &= connect(m_lastConnectedRenderer, SIGNAL(frameUpdated(const QImage)),
-                this, SLOT(slotDistributeFrame(const QImage)), Qt::UniqueConnection);
+        b &= connect(m_lastConnectedRenderer, SIGNAL(frameUpdated(QImage)),
+                this, SLOT(slotDistributeFrame(QImage)), Qt::UniqueConnection);
         b &= connect(m_lastConnectedRenderer, SIGNAL(audioSamplesSignal(QVector<int16_t>,int,int,int)),
                 this, SLOT(slotDistributeAudio(QVector<int16_t>,int,int,int)), Qt::UniqueConnection);
         Q_ASSERT(b);