]> git.sesse.net Git - kdenlive/blobdiff - src/commands/moveclipcommand.cpp
Use KLocalizedString (for i18n only, in kf5 it will necessary => use a script for...
[kdenlive] / src / commands / moveclipcommand.cpp
index 5fba133a05c37714a9cc095dc556259bc22b6b01..857eef048c8e499fa57a22f96b520959f60419ae 100644 (file)
 #include "moveclipcommand.h"
 #include "customtrackview.h"
 
-#include <KLocale>
+#include <KLocalizedString>
 
-MoveClipCommand::MoveClipCommand(CustomTrackView *view, const ItemInfo start, const ItemInfo end, bool doIt, QUndoCommand * parent) :
-    QUndoCommand(parent),
-    m_view(view),
-    m_startPos(start),
-    m_endPos(end),
-    m_doIt(doIt),
-    m_success(true)
+MoveClipCommand::MoveClipCommand(CustomTrackView *view, const ItemInfo &start, const ItemInfo &end, bool doIt, QUndoCommand * parent)
+    QUndoCommand(parent),
+      m_view(view),
+      m_startPos(start),
+      m_endPos(end),
+      m_doIt(doIt),
+      m_success(true)
 {
     setText(i18n("Move clip"));
     if (parent) {
         // command has a parent, so there are several operations ongoing, do not refresh monitor
         m_refresh = false;
-    } else m_refresh = true;
+    } else {
+        m_refresh = true;
+    }
 }
 
 
@@ -52,9 +54,9 @@ void MoveClipCommand::undo()
 void MoveClipCommand::redo()
 {
     if (m_doIt) {
-//        qDebug() << "Executing move clip command. End now:" << m_endPos;
+        //        qDebug() << "Executing move clip command. End now:" << m_endPos;
         m_success = m_view->moveClip(m_startPos, m_endPos, m_refresh, &m_endPos);
-//        qDebug() << "Move clip command executed. End now: " << m_endPos;
+        //        qDebug() << "Move clip command executed. End now: " << m_endPos;
     }
     m_doIt = true;
 }