]> git.sesse.net Git - kdenlive/blobdiff - src/addclipcutcommand.h
User can now select audio bitrate in a list, fix creating new render profiles when...
[kdenlive] / src / addclipcutcommand.h
index 7351d0416b3c41316fc61ae75a980492bab66537..96f3239e1f18ee21bef13a02157842359ee71f7b 100644 (file)
@@ -29,7 +29,7 @@ class ProjectList;
 class AddClipCutCommand : public QUndoCommand
 {
 public:
-    AddClipCutCommand(ProjectList *list, const QString &id, int in, int out, bool remove, QUndoCommand * parent = 0);
+    AddClipCutCommand(ProjectList *list, const QString &id, int in, int out, const QString desc, bool newItem, bool remove, QUndoCommand * parent = 0);
 
     virtual void undo();
     virtual void redo();
@@ -39,6 +39,8 @@ private:
     QString m_id;
     int m_in;
     int m_out;
+    QString m_desc;
+    bool m_newItem;
     bool m_remove;
 };