]> git.sesse.net Git - kdenlive/blobdiff - src/addtransitioncommand.h
* Clip Markers are now displayed over the clip monitor
[kdenlive] / src / addtransitioncommand.h
index 6eee811f33b01a130a0162403db098e2096e770f..67c3383b8b9fb71533a62ad09b3b6378db36b032 100644 (file)
@@ -31,7 +31,7 @@ class CustomTrackView;
 
 class AddTransitionCommand : public QUndoCommand {
 public:
-    AddTransitionCommand(CustomTrackView *view, ItemInfo info, int transitiontrack, QDomElement params, bool doIt);
+    AddTransitionCommand(CustomTrackView *view, ItemInfo info, int transitiontrack, QDomElement params, bool remove, bool doIt, QUndoCommand * parent = 0);
     virtual void undo();
     virtual void redo();
 
@@ -41,6 +41,7 @@ private:
     QDomElement m_params;
     int m_track;
     bool m_doIt;
+    bool m_remove;
 };
 
 #endif