From: Jean-Nicolas Artaud Date: Thu, 16 Jan 2014 23:20:40 +0000 (+0100) Subject: Fix compile for Nepomuk uses. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=5359c90f9c2046df5314442c9e7a34b3ae6f1855;p=kdenlive Fix compile for Nepomuk uses. --- diff --git a/src/projectlist.cpp b/src/projectlist.cpp index ad465df1..ddf1a842 100644 --- a/src/projectlist.cpp +++ b/src/projectlist.cpp @@ -975,7 +975,7 @@ 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)) { + 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"));