]> git.sesse.net Git - kdenlive/blobdiff - src/folderprojectitem.h
Integrate with the required MLT hooks for getting Movit to work.
[kdenlive] / src / folderprojectitem.h
index ea9b5e6202f84e50006a906b446fec912689b0cc..c49dfaae529fc642be61b74a9569c4aceac7886d 100644 (file)
@@ -39,13 +39,14 @@ public:
     QString clipId() const;
     const QString groupName() const;
     void setGroupName(const QString name);
+    void switchIcon();
 
     /** Make sure folders appear on top of the tree widget */
     virtual bool operator<(const QTreeWidgetItem &other)const {
-       int column = treeWidget()->sortColumn();
-       if (other.type() == PROJECTFOLDERTYPE)
-         return text(column).toLower() < other.text(column).toLower();
-       else return true;
+        int column = treeWidget()->sortColumn();
+        if (other.type() == ProjectFoldeType)
+            return text(column).toLower() < other.text(column).toLower();
+        else return true;
     }
 
 private: