]> git.sesse.net Git - kdenlive/blobdiff - src/moveeffectcommand.h
Fix regression introduced by document validation changes (document profile was not...
[kdenlive] / src / moveeffectcommand.h
index 1ac6946b6006bc7d0539b4fe9d0215f98ceced7e..790390ac2a9f1d8cf80b9335bf97df5ec42782d3 100644 (file)
 
 class CustomTrackView;
 
-class MoveEffectCommand : public QUndoCommand {
+class MoveEffectCommand : public QUndoCommand
+{
 public:
-    MoveEffectCommand(CustomTrackView *view, const int track, GenTime pos, int oldPos, int newPos, bool doIt, QUndoCommand * parent = 0);
+    MoveEffectCommand(CustomTrackView *view, const int track, GenTime pos, int oldPos, int newPos, QUndoCommand * parent = 0);
 
     virtual int id() const;
     virtual bool mergeWith(const QUndoCommand * command);
@@ -43,7 +44,6 @@ private:
     int m_oldindex;
     int m_newindex;
     GenTime m_pos;
-    bool m_doIt;
 };
 
 #endif