]> git.sesse.net Git - kdenlive/blobdiff - src/addeffectcommand.h
Reindent all source files
[kdenlive] / src / addeffectcommand.h
index 942d9fe155df9dee6774a834debd2f4a6f9c65ff..a62f7a81f347ca8d10b8987d73671ef73c46201c 100644 (file)
 
 #include "customtrackview.h"
 
-class AddEffectCommand : public QUndoCommand
- {
- public:
-     AddEffectCommand(CustomTrackView *view, const int track, GenTime pos, QDomElement effect, bool doIt);
+class AddEffectCommand : public QUndoCommand {
+public:
+    AddEffectCommand(CustomTrackView *view, const int track, GenTime pos, QDomElement effect, bool doIt);
 
     virtual void undo();
     virtual void redo();
 
- private:
-     CustomTrackView *m_view;
-     int m_track;
-     QDomElement m_effect;
-     GenTime m_pos;
-     bool m_doIt;
- };
+private:
+    CustomTrackView *m_view;
+    int m_track;
+    QDomElement m_effect;
+    GenTime m_pos;
+    bool m_doIt;
+};
 
 #endif