]> git.sesse.net Git - kdenlive/blobdiff - src/commands/locktrackcommand.cpp
Integrate with the required MLT hooks for getting Movit to work.
[kdenlive] / src / commands / locktrackcommand.cpp
index 8b35773bc56960a950afd1d56cbce4f00325d25e..dee4f82b0f334d2b9482d21f77e77dbe9b40ce58 100644 (file)
 #include "locktrackcommand.h"
 #include "customtrackview.h"
 
-#include <KLocale>
+#include <KLocalizedString>
 
 LockTrackCommand::LockTrackCommand(CustomTrackView *view, int ix, bool lock, QUndoCommand * parent) :
-        QUndoCommand(parent),
-        m_view(view),
-        m_ix(ix),
-        m_lock(lock)
+    QUndoCommand(parent),
+    m_view(view),
+    m_ix(ix),
+    m_lock(lock)
 {
-    if (lock) setText(i18n("Lock track"));
-    else setText(i18n("Unlock track"));
+    if (lock)
+        setText(i18n("Lock track"));
+    else
+        setText(i18n("Unlock track"));
 }