]> git.sesse.net Git - kdenlive/blobdiff - src/addtimelineclipcommand.h
* internal rework: switch clip id's from integer to string
[kdenlive] / src / addtimelineclipcommand.h
index 9d596808b34c1ee0f167c8b87c8ccb67fa589ce3..b4c3edb0dafb2302a42e01afd297d952c4b0fa85 100644 (file)
@@ -35,7 +35,7 @@ class CustomTrackView;
 
 class AddTimelineClipCommand : public QUndoCommand {
 public:
-    AddTimelineClipCommand(CustomTrackView *view, QDomElement xml, int clipId, ItemInfo info, EffectsList effects, bool doIt, bool doRemove, QUndoCommand * parent = 0);
+    AddTimelineClipCommand(CustomTrackView *view, QDomElement xml, const QString &clipId, ItemInfo info, EffectsList effects, bool doIt, bool doRemove, QUndoCommand * parent = 0);
     virtual void undo();
     virtual void redo();
 
@@ -43,7 +43,7 @@ private:
     CustomTrackView *m_view;
     ItemInfo m_clipInfo;
     EffectsList m_effects;
-    int m_clipId;
+    QString m_clipId;
     QDomElement m_xml;
     bool m_doIt;
     bool m_remove;