X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fcommands%2Fresizeclipcommand.cpp;h=408239804fc520e9446b4293b2f598d06a398c85;hb=20f0cd1075b25fe1311ba3d0b4fba7f83f9c0f42;hp=a0103c06e8d3e042efa46e6ea9edbc0887421080;hpb=f4699aef75ea62acb69ad499317493facdef04df;p=kdenlive diff --git a/src/commands/resizeclipcommand.cpp b/src/commands/resizeclipcommand.cpp index a0103c06..40823980 100644 --- a/src/commands/resizeclipcommand.cpp +++ b/src/commands/resizeclipcommand.cpp @@ -21,15 +21,15 @@ #include "resizeclipcommand.h" #include "customtrackview.h" -#include +#include ResizeClipCommand::ResizeClipCommand(CustomTrackView *view, const ItemInfo &start, const ItemInfo &end, bool doIt, bool dontWorry, QUndoCommand * parent) : - QUndoCommand(parent), - m_view(view), - m_startPos(start), - m_endPos(end), - m_doIt(doIt), - m_dontWorry(dontWorry) + QUndoCommand(parent), + m_view(view), + m_startPos(start), + m_endPos(end), + m_doIt(doIt), + m_dontWorry(dontWorry) { setText(i18n("Resize clip")); } @@ -43,7 +43,7 @@ void ResizeClipCommand::undo() void ResizeClipCommand::redo() { if (m_doIt) { - m_view->resizeClip(m_startPos, m_endPos, m_dontWorry); + m_view->resizeClip(m_startPos, m_endPos, m_dontWorry); } m_doIt = true; }