aboutsummaryrefslogtreecommitdiff
path: root/rewindworkerthread.h
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-02-11 16:12:21 -0200
committerSamuel Fadel <samuelfadel@gmail.com>2016-02-11 16:12:21 -0200
commit7d96918246b866a0b4aac6b4dc70e4c049c0ada9 (patch)
tree0fabeec2a9dbef56478a3d07c5728e81b8c384dc /rewindworkerthread.h
parent5f22fd080bb62a9242d1452415f5073bcfd69c49 (diff)
RewindWorkerThread renamed to TransitionWorkerThread.
Also, added easing curve customization.
Diffstat (limited to 'rewindworkerthread.h')
-rw-r--r--rewindworkerthread.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/rewindworkerthread.h b/rewindworkerthread.h
deleted file mode 100644
index 0bbaeb6..0000000
--- a/rewindworkerthread.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef REWINDWORKERTHREAD_H
-#define REWINDWORKERTHREAD_H
-
-#include "transitioncontrol.h"
-
-#include <QObject>
-#include <QThread>
-
-class RewindWorkerThread
- : public QThread
-{
- Q_OBJECT
-public:
- RewindWorkerThread(TransitionControl *control) { m_control = control; }
- void run();
-
-private:
- TransitionControl *m_control;
-};
-
-#endif // REWINDWORKERTHREAD_H