]> git.sesse.net Git - kdenlive/blobdiff - src/groupclipscommand.h
Correctly update monitor when changing a title clip duration
[kdenlive] / src / groupclipscommand.h
index 71609c92f1316b7a0e3472e12213fb383ed2730e..1a8ef7edb190fba30e38c03bec0cf8148c400793 100644 (file)
 class GenTime;
 class CustomTrackView;
 
-class GroupClipsCommand : public QUndoCommand {
+class GroupClipsCommand : public QUndoCommand
+{
 public:
-    GroupClipsCommand(CustomTrackView *view, const QList <ItemInfo> clipInfos, const QList <ItemInfo> transitionInfos, bool group, bool doIt, QUndoCommand * parent = 0);
+    GroupClipsCommand(CustomTrackView *view, const QList <ItemInfo> clipInfos, const QList <ItemInfo> transitionInfos, bool group, QUndoCommand * parent = 0);
     virtual void undo();
     virtual void redo();
 
@@ -41,7 +42,6 @@ private:
     CustomTrackView *m_view;
     const QList <ItemInfo> m_clips;
     const QList <ItemInfo> m_transitions;
-    bool m_doIt;
     bool m_group;
 };