X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Faddmarkercommand.h;h=c89d0c6748fac14a7d23b6f0dafe2e82f2b74131;hb=8ba04e65e1a7db1b579cf110ffccbc9eda4265ca;hp=cc16bf61e1a1f26cc41528f1a8c28a808a4a1685;hpb=a04d51e10a7b1fcfde9407fbab1feb1be6b568e7;p=kdenlive diff --git a/src/addmarkercommand.h b/src/addmarkercommand.h index cc16bf61..c89d0c67 100644 --- a/src/addmarkercommand.h +++ b/src/addmarkercommand.h @@ -29,9 +29,10 @@ class CustomTrackView; -class AddMarkerCommand : public QUndoCommand { +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, QUndoCommand * parent = 0); virtual void undo(); virtual void redo(); @@ -39,9 +40,8 @@ private: CustomTrackView *m_view; QString m_oldcomment; QString m_comment; - int m_id; + QString m_id; GenTime m_pos; - bool m_doIt; }; #endif