X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fcommands%2Fmoveeffectcommand.h;h=e4aa6d707532b81bbec1cc15a5779fbe7a642b73;hb=f0867739c9a788a250a37174e0952e0e96e318b3;hp=790390ac2a9f1d8cf80b9335bf97df5ec42782d3;hpb=79a58d4bd2faf4d6ee6576acc70219e95efb2865;p=kdenlive diff --git a/src/commands/moveeffectcommand.h b/src/commands/moveeffectcommand.h index 790390ac..e4aa6d70 100644 --- a/src/commands/moveeffectcommand.h +++ b/src/commands/moveeffectcommand.h @@ -31,7 +31,7 @@ class CustomTrackView; class MoveEffectCommand : public QUndoCommand { public: - MoveEffectCommand(CustomTrackView *view, const int track, GenTime pos, int oldPos, int newPos, QUndoCommand * parent = 0); + MoveEffectCommand(CustomTrackView *view, const int track, GenTime pos, const QList &oldPos, int newPos, QUndoCommand * parent = 0); virtual int id() const; virtual bool mergeWith(const QUndoCommand * command); @@ -41,8 +41,8 @@ public: private: CustomTrackView *m_view; int m_track; - int m_oldindex; - int m_newindex; + QList m_oldindex; + QList m_newindex; GenTime m_pos; };