]> git.sesse.net Git - kdenlive/blobdiff - src/addmarkercommand.h
cppcheck fixes, patch by Mikko Rapeli [9/27]
[kdenlive] / src / addmarkercommand.h
index cb539dac933e877ee3656e2b5b5e21fba73261d6..c89d0c6748fac14a7d23b6f0dafe2e82f2b74131 100644 (file)
 class CustomTrackView;
 
 
-class AddMarkerCommand : public QUndoCommand {
+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();
 
@@ -41,7 +42,6 @@ private:
     QString m_comment;
     QString m_id;
     GenTime m_pos;
-    bool m_doIt;
 };
 
 #endif