]> git.sesse.net Git - kdenlive/blobdiff - src/editguidecommand.cpp
corners: Fix crash when adding keyframe after last keyframe
[kdenlive] / src / editguidecommand.cpp
index c60a90e3ad063971a4eac10ac9068f7e523a4c8d..20933a3c8e760fe06e0b7b04b4e8cdd7cd765ae5 100644 (file)
  *   (at your option) any later version.                                   *
  *                                                                         *
  ***************************************************************************/
-#include <KLocale>
+
 
 #include "editguidecommand.h"
 #include "customtrackview.h"
 
-EditGuideCommand::EditGuideCommand(CustomTrackView *view, const GenTime oldPos, const QString &oldcomment, const GenTime pos, const QString &comment, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), m_view(view), m_oldPos(oldPos), m_oldcomment(oldcomment), m_pos(pos), m_comment(comment), m_doIt(doIt) {
+#include <KLocale>
+
+EditGuideCommand::EditGuideCommand(CustomTrackView *view, const GenTime oldPos, const QString &oldcomment, const GenTime pos, const QString &comment, bool doIt, QUndoCommand * parent) :
+        QUndoCommand(parent),
+        m_view(view),
+        m_oldcomment(oldcomment),
+        m_comment(comment),
+        m_oldPos(oldPos),
+        m_pos(pos),
+        m_doIt(doIt)
+{
     if (m_oldcomment.isEmpty()) setText(i18n("Add guide"));
     else if (m_oldPos == m_pos) setText(i18n("Edit guide"));
     else if (m_pos <= GenTime()) setText(i18n("Delete guide"));
@@ -28,11 +38,13 @@ EditGuideCommand::EditGuideCommand(CustomTrackView *view, const GenTime oldPos,
 
 
 // virtual
-void EditGuideCommand::undo() {
+void EditGuideCommand::undo()
+{
     m_view->editGuide(m_pos, m_oldPos, m_oldcomment);
 }
 // virtual
-void EditGuideCommand::redo() {
+void EditGuideCommand::redo()
+{
     if (m_doIt) {
         m_view->editGuide(m_oldPos, m_pos, m_comment);
     }