]> git.sesse.net Git - kdenlive/blobdiff - src/commands/editeffectcommand.h
Use const'ref
[kdenlive] / src / commands / editeffectcommand.h
index c793fd4f842ac3962644dd5d8ec9b3fb7381b7f1..2c7719ea380f4b4ca3d6cb99243b7955b94e6eb5 100644 (file)
@@ -31,7 +31,7 @@ class CustomTrackView;
 class EditEffectCommand : public QUndoCommand
 {
 public:
-    EditEffectCommand(CustomTrackView *view, const int track, GenTime pos, QDomElement oldeffect, QDomElement effect, int stackPos, bool doIt, QUndoCommand *parent = 0);
+    EditEffectCommand(CustomTrackView *view, const int track, GenTime pos, const QDomElement &oldeffect, const QDomElement &effect, int stackPos, bool refreshEffectStack, bool doIt, QUndoCommand *parent = 0);
 
     virtual int id() const;
     virtual bool mergeWith(const QUndoCommand * command);
@@ -46,6 +46,7 @@ private:
     const GenTime m_pos;
     int m_stackPos;
     bool m_doIt;
+    bool m_refreshEffectStack;
 };
 
 #endif