]> git.sesse.net Git - kdenlive/blobdiff - src/editeffectcommand.h
* NEW: find as you type feature. You can now type a text and the timeline will scroll...
[kdenlive] / src / editeffectcommand.h
index c06fe93143b1b0a051dacd0caaf39bff9cdb4df5..d474d8b7b8df2bea078c3c948276a91dd538b08a 100644 (file)
@@ -30,7 +30,7 @@ class CustomTrackView;
 
 class EditEffectCommand : public QUndoCommand {
 public:
-    EditEffectCommand(CustomTrackView *view, const int track, GenTime pos, QDomElement oldeffect, QDomElement effect, bool doIt);
+    EditEffectCommand(CustomTrackView *view, const int track, GenTime pos, QDomElement oldeffect, QDomElement effect, int stackPos, bool doIt);
 
     virtual int id() const;
     virtual bool mergeWith(const QUndoCommand * command);
@@ -43,6 +43,7 @@ private:
     QDomElement m_effect;
     QDomElement m_oldeffect;
     const GenTime m_pos;
+    int m_stackPos;
     bool m_doIt;
 };