]> git.sesse.net Git - kdenlive/blobdiff - src/editeffectcommand.h
Fix regression introduced by document validation changes (document profile was not...
[kdenlive] / src / editeffectcommand.h
index c06fe93143b1b0a051dacd0caaf39bff9cdb4df5..362110d610a28d77ba2a33a0316bbce2ff427cae 100644 (file)
 
 class CustomTrackView;
 
-class EditEffectCommand : public QUndoCommand {
+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 +44,7 @@ private:
     QDomElement m_effect;
     QDomElement m_oldeffect;
     const GenTime m_pos;
+    int m_stackPos;
     bool m_doIt;
 };