From: Jean-Nicolas Artaud Date: Mon, 13 Jan 2014 21:24:03 +0000 (+0100) Subject: Set ifdef on USE_NEPUMOK. X-Git-Url: https://git.sesse.net/?p=kdenlive;a=commitdiff_plain;h=409332f58ceda01ec7df0af2d89f991f7660da56 Set ifdef on USE_NEPUMOK. --- diff --git a/src/projectlist.cpp b/src/projectlist.cpp index 04150d1e..ad465df1 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 +#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(); } }