]> git.sesse.net Git - kdenlive/blobdiff - src/editkeyframecommand.cpp
Reformat initializer lists in all constructors.
[kdenlive] / src / editkeyframecommand.cpp
index 920285252f7579eaff5edb0467814bb082094745..fed063e1fdd4f386e8fa331697eaeb98ade1f703 100644 (file)
 
 #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)
+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();