X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fcustomtrackview.cpp;h=49647d3c9cbae1d256334e8df49a9ba5351be062;hb=f9dbfa756b78f336576b42f041de325c98aa48e8;hp=16a167fc7f55f4b582603c91c27c905493a82987;hpb=23dc500f7a8b1ef26040a9e27e3c4dfe6b4140a9;p=kdenlive diff --git a/src/customtrackview.cpp b/src/customtrackview.cpp index 16a167fc..49647d3c 100644 --- a/src/customtrackview.cpp +++ b/src/customtrackview.cpp @@ -956,7 +956,7 @@ void CustomTrackView::activateMonitor() { void CustomTrackView::dragEnterEvent(QDragEnterEvent * event) { if (event->mimeData()->hasFormat("kdenlive/clip")) { resetSelectionGroup(); - QStringList list = QString(event->mimeData()->data("kdenlive/clip")).split(";"); + QStringList list = QString(event->mimeData()->data("kdenlive/clip")).split(';'); m_selectionGroup = new AbstractGroupItem(m_document->fps()); QPoint pos = QPoint(); DocClipBase *clip = m_document->getBaseClip(list.at(0)); @@ -977,7 +977,7 @@ void CustomTrackView::dragEnterEvent(QDragEnterEvent * event) { scene()->addItem(m_selectionGroup); event->acceptProposedAction(); } else if (event->mimeData()->hasFormat("kdenlive/producerslist")) { - QStringList ids = QString(event->mimeData()->data("kdenlive/producerslist")).split(";"); + QStringList ids = QString(event->mimeData()->data("kdenlive/producerslist")).split(';'); m_scene->clearSelection(); resetSelectionGroup(false);