]> git.sesse.net Git - kdenlive/blobdiff - src/addmarkercommand.cpp
Krazy fixes: cleanup all headers
[kdenlive] / src / addmarkercommand.cpp
index da747f14e2a052589e741541d0b6c6335984380b..ed1c2a1ca6a5b52bfcf1b787b0d0a68ae3dcbe5d 100644 (file)
  *   (at your option) any later version.                                   *
  *                                                                         *
  ***************************************************************************/
-#include <KLocale>
+
 
 #include "addmarkercommand.h"
 #include "customtrackview.h"
 
+#include <KLocale>
+
 AddMarkerCommand::AddMarkerCommand(CustomTrackView *view, const QString &oldcomment, const QString &comment, const QString &id, const GenTime &pos, bool doIt, QUndoCommand * parent) : QUndoCommand(parent), m_view(view), m_oldcomment(oldcomment), m_comment(comment), m_id(id), m_pos(pos), m_doIt(doIt) {
     if (m_comment.isEmpty()) setText(i18n("Delete marker"));
     else if (m_oldcomment.isEmpty()) setText(i18n("Add marker"));