]> git.sesse.net Git - kdenlive/blobdiff - src/addmarkercommand.h
Fix crash when closing doc / app while proxy are generated
[kdenlive] / src / addmarkercommand.h
index 483d9bcf392a4077e71aee54b9ef73896d26cfde..c89d0c6748fac14a7d23b6f0dafe2e82f2b74131 100644 (file)
@@ -32,7 +32,7 @@ class CustomTrackView;
 class AddMarkerCommand : public QUndoCommand
 {
 public:
-    AddMarkerCommand(CustomTrackView *view, const QString &oldcomment, const QString &comment, const QString &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();
 
@@ -42,7 +42,6 @@ private:
     QString m_comment;
     QString m_id;
     GenTime m_pos;
-    bool m_doIt;
 };
 
 #endif