]> git.sesse.net Git - kdenlive/blobdiff - src/editeffectcommand.h
Apply patch from P. Fleury to improve jog shuttle speed handling.
[kdenlive] / src / editeffectcommand.h
index d474d8b7b8df2bea078c3c948276a91dd538b08a..c793fd4f842ac3962644dd5d8ec9b3fb7381b7f1 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, int stackPos, bool doIt);
+    EditEffectCommand(CustomTrackView *view, const int track, GenTime pos, QDomElement oldeffect, QDomElement effect, int stackPos, bool doIt, QUndoCommand *parent = 0);
 
     virtual int id() const;
     virtual bool mergeWith(const QUndoCommand * command);
@@ -40,8 +41,8 @@ public:
 private:
     CustomTrackView *m_view;
     const int m_track;
-    QDomElement m_effect;
     QDomElement m_oldeffect;
+    QDomElement m_effect;
     const GenTime m_pos;
     int m_stackPos;
     bool m_doIt;