]> git.sesse.net Git - kdenlive/blobdiff - src/editguidecommand.cpp
Fix crash when enabling a proxy clip
[kdenlive] / src / editguidecommand.cpp
index dd22fd2ac6f0f81d685db72d83164e687f05d00a..20933a3c8e760fe06e0b7b04b4e8cdd7cd765ae5 100644 (file)
 EditGuideCommand::EditGuideCommand(CustomTrackView *view, const GenTime oldPos, const QString &oldcomment, const GenTime pos, const QString &comment, bool doIt, QUndoCommand * parent) :
         QUndoCommand(parent),
         m_view(view),
-        m_oldPos(oldPos),
         m_oldcomment(oldcomment),
-        m_pos(pos),
         m_comment(comment),
+        m_oldPos(oldPos),
+        m_pos(pos),
         m_doIt(doIt)
 {
     if (m_oldcomment.isEmpty()) setText(i18n("Add guide"));