From: Till Theato Date: Tue, 3 Jan 2012 23:00:56 +0000 (+0100) Subject: Fix unused parameter warning in ProjectList X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=43d67d11c838257b1b875d5da7853e97ef5d94a7;p=kdenlive Fix unused parameter warning in ProjectList --- diff --git a/src/projectlist.cpp b/src/projectlist.cpp index eca508b1..7aba4bc2 100644 --- a/src/projectlist.cpp +++ b/src/projectlist.cpp @@ -2780,6 +2780,8 @@ void ProjectList::slotCheckJobProcess() void ProjectList::slotAbortProxy(const QString id, const QString path) { + Q_UNUSED(path) + ProjectItem *item = getItemById(id); if (!item) return; if (!item->isProxyRunning()) slotGotProxy(item);