X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmainwindow.cpp;h=43c1fc024c83da354b01ed15d1b7019bf8eb9b1d;hb=e8cb078eb6a33d286c9fe2aff730980f7a2eff32;hp=e1ab4dc9f4e961297dda7bf46973e1cceeea4252;hpb=f9c0df27ed5dafb1ee72c3e6dea7340de350b542;p=kdenlive diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index e1ab4dc9..43c1fc02 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -3102,7 +3102,7 @@ void MainWindow::slotEditItemDuration() m_activeTimeline->projectView()->editItemDuration(); } -void MainWindow::slotAddProjectClip(KUrl url, QMap data) +void MainWindow::slotAddProjectClip(KUrl url, stringMap data) { if (m_activeDocument) { m_activeDocument->slotAddClipFile(url, data); @@ -4497,7 +4497,7 @@ void MainWindow::slotDownloadResources() if (m_activeDocument) currentFolder = m_activeDocument->projectFolder().path(); else currentFolder = KdenliveSettings::defaultprojectfolder(); ResourceWidget *d = new ResourceWidget(currentFolder); - connect(d, SIGNAL(addClip(KUrl, QMap )), this, SLOT(slotAddProjectClip(KUrl, QMap ))); + connect(d, SIGNAL(addClip(KUrl,stringMap)), this, SLOT(slotAddProjectClip(KUrl,stringMap))); d->show(); }