]> git.sesse.net Git - kdenlive/blobdiff - src/editkeyframecommand.cpp
Krazy fixes: cleanup all headers
[kdenlive] / src / editkeyframecommand.cpp
index 8e4d397eb5309082b79ac4788ce0dc4e1d3e8d59..ab8ab5fd66205c4e1a6552818e01ed947e60f2d1 100644 (file)
  *   (at your option) any later version.                                   *
  *                                                                         *
  ***************************************************************************/
-#include <KLocale>
+
 
 #include "editkeyframecommand.h"
 #include "customtrackview.h"
 
+#include <KLocale>
+
 EditKeyFrameCommand::EditKeyFrameCommand(CustomTrackView *view, const int track, GenTime pos, const int effectIndex, const QString& oldkeyframes, const QString& newkeyframes, bool doIt) : m_view(view), m_track(track), m_pos(pos), m_index(effectIndex), m_oldkfr(oldkeyframes), m_newkfr(newkeyframes), m_doIt(doIt) {
     int prev = m_oldkfr.split(';', QString::SkipEmptyParts).count();
     int next = m_newkfr.split(';', QString::SkipEmptyParts).count();