]> git.sesse.net Git - kdenlive/blobdiff - src/changespeedcommand.cpp
Krazy fixes: cleanup all headers
[kdenlive] / src / changespeedcommand.cpp
index 35468c9176a0211be49badc2c685f7f47acf2bcc..badcb9b0e075954e11a556fd46d1008f3c00c4c2 100644 (file)
  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
  ***************************************************************************/
 
-#include <KLocale>
 
 #include "changespeedcommand.h"
 #include "customtrackview.h"
 
+#include <KLocale>
+
 ChangeSpeedCommand::ChangeSpeedCommand(CustomTrackView *view, ItemInfo info, double old_speed, double new_speed, const QString &clipId, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), m_view(view), m_clipInfo(info), m_old_speed(old_speed), m_new_speed(new_speed), m_clipId(clipId), m_doIt(doIt) {
     setText(i18n("Adjust clip length"));
 }