]> git.sesse.net Git - kdenlive/blobdiff - src/commands/editguidecommand.cpp
Remove virtual keyword, fix include, fix indent
[kdenlive] / src / commands / editguidecommand.cpp
index 7e12a7b38a448b470b228ea5b47b02f3996c30cd..0f5ece095189547c7eab8ce0771f10101ab2b14d 100644 (file)
 #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)
+    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"));
-       m_oldPos = GenTime(-1);
+        setText(i18n("Add guide"));
+        m_oldPos = GenTime(-1);
     }
-    else if (m_oldPos == m_pos) setText(i18n("Edit guide"));
-    else if (m_pos < GenTime() && m_comment.isEmpty()) setText(i18n("Delete guide"));
-    else setText(i18n("Move guide"));
+    else if (m_oldPos == m_pos)
+        setText(i18n("Edit guide"));
+    else if (m_pos < GenTime() && m_comment.isEmpty())
+        setText(i18n("Delete guide"));
+    else
+        setText(i18n("Move guide"));
 }
 
-
 // virtual
 void EditGuideCommand::undo()
 {