From: Jean-Nicolas Artaud Date: Mon, 13 Jan 2014 20:52:14 +0000 (+0100) Subject: Fix compile with Nepomuk activated. X-Git-Url: https://git.sesse.net/?p=kdenlive;a=commitdiff_plain;h=f33651cfeacdc62d6b56de27cf4e433f26ce2d07 Fix compile with Nepomuk activated. --- diff --git a/src/projectlist.cpp b/src/projectlist.cpp index a024e06c..04150d1e 100644 --- a/src/projectlist.cpp +++ b/src/projectlist.cpp @@ -974,13 +974,13 @@ void ProjectList::slotUpdateClipProperties(ProjectItem *clip, QMap setText(1, properties.value("description")); monitorItemEditing(true); -#ifdef USE_NEPOMUK - if (KdenliveSettings::activate_nepomuk() && (type == AUDIO || type == VIDEO || type == AV || type == IMAGE || type == PLAYLIST)) { +//#ifdef USE_NEPOMUK + if (KdenliveSettings::activate_nepomuk() && (type == Audio || type == Video || type == AV || type == Image || type == PLAYLIST)) { // Use Nepomuk system to store clip description Nepomuk::Resource f(clip->clipUrl().path()); f.setDescription(properties.value("description")); } -#endif +//#endif emit projectModified(); } }