]> git.sesse.net Git - kdenlive/blobdiff - src/addmarkercommand.h
* internal rework: switch clip id's from integer to string
[kdenlive] / src / addmarkercommand.h
index cc16bf61e1a1f26cc41528f1a8c28a808a4a1685..cb539dac933e877ee3656e2b5b5e21fba73261d6 100644 (file)
@@ -31,7 +31,7 @@ class CustomTrackView;
 
 class AddMarkerCommand : public QUndoCommand {
 public:
-    AddMarkerCommand(CustomTrackView *view, const QString &oldcomment, const QString &comment, const int id, const GenTime &pos, bool doIt, QUndoCommand * parent = 0);
+    AddMarkerCommand(CustomTrackView *view, const QString &oldcomment, const QString &comment, const QString &id, const GenTime &pos, bool doIt, QUndoCommand * parent = 0);
     virtual void undo();
     virtual void redo();
 
@@ -39,7 +39,7 @@ private:
     CustomTrackView *m_view;
     QString m_oldcomment;
     QString m_comment;
-    int m_id;
+    QString m_id;
     GenTime m_pos;
     bool m_doIt;
 };