]> git.sesse.net Git - kdenlive/blobdiff - src/editeffectcommand.h
Reindent all source files
[kdenlive] / src / editeffectcommand.h
index 276d6a9538f939d5b8355b46f1090c57246f5428..902011ababec91b855c533b0ec230331cf426aae 100644 (file)
 
 #include "customtrackview.h"
 
-class EditEffectCommand : public QUndoCommand
- {
- public:
-     EditEffectCommand(CustomTrackView *view, const int track, GenTime pos, QDomElement oldeffect, QDomElement effect, bool doIt);
+class EditEffectCommand : public QUndoCommand {
+public:
+    EditEffectCommand(CustomTrackView *view, const int track, GenTime pos, QDomElement oldeffect, QDomElement effect, bool doIt);
 
     virtual int id() const;
-    virtual bool mergeWith ( const QUndoCommand * command );
+    virtual bool mergeWith(const QUndoCommand * command);
     virtual void undo();
     virtual void redo();
 
- private:
-     CustomTrackView *m_view;
-     int m_track;
-     QDomElement m_effect;
-     QDomElement m_oldeffect;
-     GenTime m_pos;
-     bool m_doIt;
- };
+private:
+    CustomTrackView *m_view;
+    int m_track;
+    QDomElement m_effect;
+    QDomElement m_oldeffect;
+    GenTime m_pos;
+    bool m_doIt;
+};
 
 #endif