From: Jean-Baptiste Mardelle Date: Fri, 9 Sep 2011 23:41:07 +0000 (+0000) Subject: cppcheck fixes, patch by Mikko Rapeli [8/27] X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=8bdb9b6797c383f3f832dbe25c3f8f22f6e30ab9;p=kdenlive cppcheck fixes, patch by Mikko Rapeli [8/27] svn path=/trunk/kdenlive/; revision=5881 --- diff --git a/src/projectlist.cpp b/src/projectlist.cpp index 001395d8..e2115e45 100644 --- a/src/projectlist.cpp +++ b/src/projectlist.cpp @@ -1018,8 +1018,8 @@ void ProjectList::slotAddClip(DocClipBase *clip, bool getProperties) item = new ProjectItem(m_listView, clip); } if (item->data(0, DurationRole).isNull()) item->setData(0, DurationRole, i18n("Loading")); - connect(clip, SIGNAL(createProxy(const QString)), this, SLOT(slotCreateProxy(const QString))); - connect(clip, SIGNAL(abortProxy(const QString, const QString)), this, SLOT(slotAbortProxy(const QString, const QString))); + connect(clip, SIGNAL(createProxy(const QString &)), this, SLOT(slotCreateProxy(const QString &))); + connect(clip, SIGNAL(abortProxy(const QString &, const QString &)), this, SLOT(slotAbortProxy(const QString, const QString))); if (getProperties) { m_listView->processLayout(); QDomElement e = clip->toXML().cloneNode().toElement();