]> git.sesse.net Git - kdenlive/blobdiff - src/projectitem.cpp
Start caching of project tree thumbnails for faster project opening
[kdenlive] / src / projectitem.cpp
index 3e79b65c23e0596554a90704a68035e3824e0fc8..fe25876e06be04a49dfe879cb8114e1e89f21d9d 100644 (file)
@@ -133,6 +133,11 @@ void ProjectItem::setProperties(QMap <QString, QString> props) {
     m_clip->setProperties(props);
 }
 
+QString ProjectItem::getClipHash() const {
+    if (m_clip == NULL) return QString();
+    return m_clip->getClipHash();
+}
+
 void ProjectItem::setProperty(const QString &key, const QString &value) {
     if (m_clip == NULL) return;
     m_clip->setProperty(key, value);