]> git.sesse.net Git - kdenlive/blobdiff - src/changespeedcommand.h
* internal rework: switch clip id's from integer to string
[kdenlive] / src / changespeedcommand.h
index c360716fc3f12f3e792879a4bd71e6dfb91c63a1..a95463cb317c2380210157b4887ce07ff8316f36 100644 (file)
@@ -32,14 +32,14 @@ class CustomTrackView;
 
 class ChangeSpeedCommand : public QUndoCommand {
 public:
-    ChangeSpeedCommand(CustomTrackView *view, ItemInfo info, double old_speed, double new_speed, int clipId, bool doIt, QUndoCommand * parent = 0);
+    ChangeSpeedCommand(CustomTrackView *view, ItemInfo info, double old_speed, double new_speed, const QString &clipId, bool doIt, QUndoCommand * parent = 0);
     virtual void undo();
     virtual void redo();
 
 private:
     CustomTrackView *m_view;
     ItemInfo m_clipInfo;
-    int m_clipId;
+    QString m_clipId;
     bool m_doIt;
     double m_old_speed;
     double m_new_speed;